Skip to content

Commit

Permalink
fix(radio-group-item): typing and format
Browse files Browse the repository at this point in the history
  • Loading branch information
leomotors committed Oct 27, 2024
1 parent 22b6545 commit 43b445b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<script lang="ts">
import { Label, RadioGroup as RadioGroupPrimitive } from 'bits-ui'
import Circle from 'lucide-svelte/icons/circle'
import { Circle } from 'lucide-svelte'
import { cn } from '../../utils'
type $$Props = RadioGroupPrimitive.ItemProps & {
id: string
label: string
}
type $$Events = RadioGroupPrimitive.ItemEvents
Expand Down Expand Up @@ -35,6 +36,7 @@
<Label.Root
for="{id}"
class="text-button2 font-normal leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
>{label}</Label.Root
>
{label}
</Label.Root>
</div>

0 comments on commit 43b445b

Please sign in to comment.