Const
Create a customized Material UI Switch component.
Wraps the Material-UI Switch with a FormControlLabel to ensure proper labeling and accessibility. Generates unique IDs to associate the label with the switch control.
All valid Material-UI Switch props
The Switch component wrapped in FormControlLabel
// Basic usage<Switch label="Toggle Switch" checked={isChecked} onChange={handleChange}/>// Disabled state<Switch label="Disabled Switch" disabled checked={false}/>// With size variant<Switch label="Small Switch" size="small" checked={isChecked}/> Copy
// Basic usage<Switch label="Toggle Switch" checked={isChecked} onChange={handleChange}/>// Disabled state<Switch label="Disabled Switch" disabled checked={false}/>// With size variant<Switch label="Small Switch" size="small" checked={isChecked}/>
https://mui.com/material-ui/react-switch/
Create a customized Material UI Switch component.
Wraps the Material-UI Switch with a FormControlLabel to ensure proper labeling and accessibility. Generates unique IDs to associate the label with the switch control.