Skip to content

Commit

Permalink
[Radio][Joy] Use precise dimensions for radio icon (#35548)
Browse files Browse the repository at this point in the history
  • Loading branch information
hbjORbj committed Dec 23, 2022
1 parent 7710cdd commit 94bc99f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mui-joy/src/Radio/Radio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ const RadioIcon = styled('span', {
slot: 'Icon',
overridesResolver: (props, styles) => styles.icon,
})<{ ownerState: RadioOwnerState }>(({ ownerState }) => ({
width: '50%',
height: '50%',
width: 'calc(var(--Radio-size) / 2)',
height: 'calc(var(--Radio-size) / 2)',
borderRadius: 'inherit',
color: 'inherit',
backgroundColor: 'currentColor',
Expand Down

0 comments on commit 94bc99f

Please sign in to comment.