coyotte508's picture
coyotte508 HF staff
🍱 Copy folders from huggingface.js
b2ecf7d
raw
history blame
722 Bytes
<script lang="ts">
import WidgetLabel from "../WidgetLabel/WidgetLabel.svelte";
export let classNames = "";
export let group: string;
export let label: string;
export let onChange: (e: Event) => void = () => null;
export let value: string;
</script>
<WidgetLabel classNames="inline-flex items-center {classNames}" {label}>
<svelte:fragment slot="before">
<input
bind:group
class="mr-2 cursor-pointer border-gray-300 checked:text-blue-500 hover:border-gray-300 focus:border-gray-300 focus:ring-1 focus:ring-blue-200 focus:ring-offset-2 dark:border-gray-700 dark:focus:ring-gray-500 dark:focus:ring-offset-gray-925"
on:change={onChange}
type="radio"
{value}
/>
</svelte:fragment>
</WidgetLabel>