This repository has been archived on 2025-10-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
helseveileder/frontend/src/components/userform/inputs/RadioButtons.svelte

13 lines
410 B
Svelte
Raw Normal View History

<script lang="ts">
export let options:string[]
</script>
<div class="flex justify-between">
{#each options as data, index (data)}
<div class="flex flex-col justify-center items-center w-24 ">
<button name={data} class="h-7 w-7 rounded-full border-2 border-primary hover:bg-primary"></button>
<label class="text-primary text-sm mt-1" for={data}>{data}</label>
</div>
{/each}
</div>