9 lines
231 B
TypeScript
9 lines
231 B
TypeScript
|
|
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" />
|
||
|
|
);
|
||
|
|
}
|