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
427 B
Svelte
Raw Normal View History

<script lang="ts">
export let options:string[]
</script>
<div class="flex justify-between w-full">
{#each options as data, index (data)}
2023-12-14 19:31:08 +01:00
<div class="flex flex-col justify-start items-center w-12 text-center">
<button name={data} class="h-6 w-6 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>