Skip to content

Commit

Permalink
use correct outlined icon for radio component
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasvice committed Oct 4, 2024
1 parent a242d81 commit b6e59c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/form/primitive/Radio/Radio.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import IconRadioButtonCheckedRoundedFilled from '@aboutbits/react-material-icons/dist/IconRadioButtonCheckedRoundedFilled'
import IconRadioButtonCheckedRounded from '@aboutbits/react-material-icons/dist/IconRadioButtonCheckedRounded'
import IconRadioButtonUncheckedOutlined from '@aboutbits/react-material-icons/dist/IconRadioButtonUncheckedOutlined'
import classNames from 'classnames'
import { ReactNode, forwardRef } from 'react'
Expand Down Expand Up @@ -91,7 +91,7 @@ const IconRadioOutlinedFilled = ({

return (
<>
<IconRadioButtonCheckedRoundedFilled
<IconRadioButtonCheckedRounded
className={classNames(iconCssChecked, className)}
{...props}
/>
Expand Down

0 comments on commit b6e59c5

Please sign in to comment.