Skip to content

Commit

Permalink
fix: apply radio button group override classname after root styles
Browse files Browse the repository at this point in the history
  • Loading branch information
mchappell committed Jul 17, 2024
1 parent 0e5c5c4 commit 8ff4f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/design-system/radio-button/radio-button.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const RadioButtonGroup = <Value extends string>({
};

return (
<Box className={cn(className, cx.root)}>
<Box className={cn(cx.root, className)}>
<RadixRadioGroup.Root
{...props}
value={localSelection}
Expand Down

0 comments on commit 8ff4f5e

Please sign in to comment.