react-garden
Version:
React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.
16 lines (13 loc) • 424 B
JavaScript
// ** MUI Imports
import Switch from '@mui/material/Switch'
import FormGroup from '@mui/material/FormGroup'
import FormControlLabel from '@mui/material/FormControlLabel'
const SwitchesSizes = () => {
return (
<FormGroup row>
<FormControlLabel control={<Switch size='small' />} label='Small' />
<FormControlLabel control={<Switch />} label='Default' />
</FormGroup>
)
}
export default SwitchesSizes