--- title: Toggle image: /images/user-guide/table-views/table.png --- Header ```jsx import { Toggle } from "twenty-ui/input"; export const MyComponent = () => { return ( 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 |