Files
twenty/packages/twenty-docs/l/it/twenty-ui/input/toggle.mdx
T
001c2097a3 i18n - docs translations (#18231)
Created by Github action

<!-- mintlify-editor-comments:start -->
Mintlify
---
0 threads from 0 users in Mintlify

- No unresolved comments
<!-- mintlify-editor-comments:end -->

<!-- mintlify-comment-->

<a
href="https://dashboard.mintlify.com/twenty/twenty/editor/i18n-docs?source=pr_comment"
target="_blank" rel="noopener noreferrer"><picture><source
media="(prefers-color-scheme: dark)"
srcset="https://d3gk2c5xim1je2.cloudfront.net/assets/open-mintlify-editor-dark.svg"><source
media="(prefers-color-scheme: light)"
srcset="https://d3gk2c5xim1je2.cloudfront.net/assets/open-mintlify-editor-light.svg"><img
src="https://d3gk2c5xim1je2.cloudfront.net/assets/open-mintlify-editor-light.svg"
alt="Open in Mintlify Editor"></picture></a>

<!-- /mintlify-comment -->

Co-authored-by: github-actions <github-actions@twenty.com>
2026-02-25 16:50:28 +01:00

43 lines
1.5 KiB
Plaintext

---
title: Attiva/Disattiva
image: /images/user-guide/table-views/table.png
---
<Frame>
<img src="/images/user-guide/table-views/table.png" alt="Intestazione" />
</Frame>
<Tabs>
<Tab title="Utilizzo">
```jsx
import { Toggle } from "twenty-ui/input";
export const MyComponent = () => {
return (
<Toggle
value = {true}
onChange = {()=>console.log('On Change event')}
color="green"
toggleSize = "medium"
/>
);
};
```
</Tab>
<Tab title="Proprietà">
| Proprietà | Tipo | Descrizione | Predefinito |
| ---------------------- | -------- | --------------------------------------------------------------------------------------------------------------------- | ----------- |
| valore | booleano | Lo stato attuale dell'interruttore | `falso` |
| onChange | funzione | Funzione di callback attivata quando lo stato dell'interruttore cambia | |
| colore | stringa | Colore dell'interruttore quando è | colore blu |
| dimensioneInterruttore | stringa | Dimensione dell'interruttore, che influisce sia sull'altezza sia sulla larghezza. Ha due opzioni: `small` e `medium`. | medio |
</Tab>
</Tabs>