Skip to content

Commit 26ec6dc

Browse files
authored
Fix Radio Button misplaced circle (#922)
1 parent 587ffdf commit 26ec6dc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/ui/radiogroup.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ const RadioGroupItem = forwardRef<
3434
{...props}
3535
>
3636
<RadioGroupPrimitive.Indicator className="flex items-center justify-center">
37-
<Icon name="Circle" className="h-1.5 w-1.5 fill-current text-current" />
37+
<Icon
38+
name="Circle"
39+
className="!h-1.5 w-1.5 fill-current text-current"
40+
/>
3841
</RadioGroupPrimitive.Indicator>
3942
</RadioGroupPrimitive.Item>
4043
);

0 commit comments

Comments
 (0)