Files
react-test/docs/data/joy/components/checkbox/BasicCheckbox.js

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

12 lines
270 B
JavaScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import Box from '@mui/joy/Box';
import Checkbox from '@mui/joy/Checkbox';
export default function BasicCheckbox() {
return (
<Box sx={{ display: 'flex', gap: 3 }}>
<Checkbox label="Label" />
<Checkbox label="Label" defaultChecked />
</Box>
);
}