Skip to content

Commit 421bcca

Browse files
authored
Merge pull request #34 from input-output-hk/fix/apply-radio-button-root-styles-before-classname-override
fix: apply radio button group override classname after root styles
2 parents 0e5c5c4 + 8ff4f5e commit 421bcca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/design-system/radio-button/radio-button.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export const RadioButtonGroup = <Value extends string>({
6161
};
6262

6363
return (
64-
<Box className={cn(className, cx.root)}>
64+
<Box className={cn(cx.root, className)}>
6565
<RadixRadioGroup.Root
6666
{...props}
6767
value={localSelection}

0 commit comments

Comments
 (0)