Files
react-test/test/regressions/fixtures/Radio/RadioIconSizeSmall.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
335 B
JavaScript
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
import * as React from 'react';
import Radio from '@mui/material/Radio';
import RadioButtonUncheckedIcon from '@mui/icons-material/RadioButtonUnchecked';
export default function RadioIconSizeSmall() {
return (
<div>
<Radio size="small" />
<Radio size="small" icon={<RadioButtonUncheckedIcon />} />
</div>
);
}