mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-26 15:01:20 +00:00
30 lines
897 B
Svelte
30 lines
897 B
Svelte
<script lang="ts">
|
|
import { RadioGroup as RadioGroupPrimitive } from 'bits-ui';
|
|
import { Check } from 'lucide-svelte';
|
|
import { cn } from '$lib/utils';
|
|
|
|
type $$Props = RadioGroupPrimitive.ItemProps & {
|
|
value: string;
|
|
};
|
|
type $$Events = RadioGroupPrimitive.ItemEvents;
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export let value: $$Props['value'];
|
|
export { className as class };
|
|
</script>
|
|
|
|
<RadioGroupPrimitive.Item
|
|
{value}
|
|
class={cn(
|
|
'aspect-square h-4 w-4 rounded-full border border-primary text-primary shadow focus:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50',
|
|
className
|
|
)}
|
|
{...$$restProps}
|
|
on:click
|
|
>
|
|
<div class="flex items-center justify-center">
|
|
<RadioGroupPrimitive.ItemIndicator>
|
|
<Check class="h-3.5 w-3.5 fill-primary" />
|
|
</RadioGroupPrimitive.ItemIndicator>
|
|
</div>
|
|
</RadioGroupPrimitive.Item>
|