Files
react-test/docs/data/joy/components/switch/ExampleThumbChild.js

18 lines
371 B
JavaScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import Switch from '@mui/joy/Switch';
import DarkMode from '@mui/icons-material/DarkMode';
export default function ExampleThumbChild() {
return (
<Switch
size="lg"
slotProps={{
input: { 'aria-label': 'Dark mode' },
thumb: {
children: <DarkMode />,
},
}}
sx={{ '--Switch-thumbSize': '16px' }}
/>
);
}