> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twenty.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Selectați

<Frame>
  <img src="https://mintcdn.com/twenty/GMeQVDsw5ST_LXpE/images/user-guide/what-is-twenty/20.png?fit=max&auto=format&n=GMeQVDsw5ST_LXpE&q=85&s=2063e7c602fea7329b99090fcbeac21c" alt="Antet" width="597" height="281" data-path="images/user-guide/what-is-twenty/20.png" />
</Frame>

Permite utilizatorilor să aleagă o valoare dintr-o listă de opțiuni predefinite.

<Tabs>
  <Tab title="Utilizare">
    ```jsx theme={null}
    import { IconTwentyStar } from 'twenty-ui/display';

    import { Select } from '@/ui/input/components/Select';

    export const MyComponent = () => {

      return (
        <Select
          className
          disabled={false}
          label="Select an option"
          options={[
            { value: 'option1', label: 'Option A', Icon: IconTwentyStar },
            { value: 'option2', label: 'Option B', Icon: IconTwentyStar },
          ]}
          value="option1"
        />
      );
    };

    ```
  </Tab>

  <Tab title="Proprietăți">
    | Proprietăți | Tip     | Descriere                                                                                                                                                                                                             |
    | ----------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
    | className   | șir     | Clasă CSS opțională pentru stilizare suplimentară                                                                                                                                                                     |
    | dezactivat  | boolean | Când este setat la `true`, dezactivează interacțiunea utilizatorului cu componenta                                                                                                                                    |
    | etichetă    | șir     | Eticheta care descrie scopul componentei `Select`                                                                                                                                                                     |
    | laSchimbare | funcție | Funcția apelată când valorile selectate se schimbă                                                                                                                                                                    |
    | opțiuni     | array   | Reprezintă opţiunile disponibile pentru componenta `selectată`. (Automatic Translation) Este un tablou de obiecte unde fiecare obiect are un `value` (identificatorul unic), `label` (etichetă) și un `Icon` opțional |
    | valoare     | şir     | Reprezintă valoarea momentan selectată. Ar trebui să corespundă uneia dintre proprietățile `value` din tabloul `opțiuni`.                                                                                             |
  </Tab>
</Tabs>
