Skip to content

Commit

Permalink
Merge pull request #34 from input-output-hk/fix/apply-radio-button-ro…
Browse files Browse the repository at this point in the history
…ot-styles-before-classname-override

fix: apply radio button group override classname after root styles
  • Loading branch information
mchappell authored Jul 18, 2024
2 parents 0e5c5c4 + 8ff4f5e commit 421bcca
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 421bcca

Please sign in to comment.