Files
react-test/docs/data/joy/components/checkbox/IconsCheckbox.tsx

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

9 lines
231 B
TypeScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import Checkbox from '@mui/joy/Checkbox';
import Close from '@mui/icons-material/Close';
export default function IconsCheckbox() {
return (
<Checkbox uncheckedIcon={<Close />} label="I have an icon when unchecked" />
);
}