
- Usage
- Props
Copy
Ask AI
import { Toggle } from "twenty-ui/input";
export const MyComponent = () => {
return (
<Toggle
value = {true}
onChange = {()=>console.log('On Change event')}
color="green"
toggleSize = "medium"
/>
);
};
| Props | Type | Description | Default |
|---|---|---|---|
| value | boolean | The current state of the toggle | false |
| onChange | function | Callback function triggered when the toggle state changes | |
| color | string | Color of the toggle when it\ | s blue color |
| toggleSize | string | Size of the toggle, affecting both height and weight. Has two options: small and medium | medium |