---
title: Seleccionar
image: /images/user-guide/what-is-twenty/20.png
---
Permet als usuaris triar un valor d'una llista d'opcions predefinides.
```jsx
import { RecoilRoot } from 'recoil';
import { IconTwentyStar } from 'twenty-ui/display';
import { Select } from '@/ui/input/components/Select';
export const MyComponent = () => {
return (
);
};
```
| Props | Tipus | Descripció |
| ----------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| nomDeClasse | cadena | Classe CSS opcional per a un estil addicional |
| desactivat | boolean | When set to `true`, disables user interaction with the component |
| etiqueta | cadena | L'etiqueta per descriure el propòsit del component `Select` |
| onChange | funció | La funció que es crida quan canvien els valors seleccionats |
| opcions | conjunt | Represents the options available for the `Selected` component. It's an array of objects where each object has a `value` (the unique identifier), `label` (the unique identifier), and an optional `Icon` |
| valor | cadena | Representa el valor actualment seleccionat. Ha de coincidir amb una de les propietats `valor` en la matriu `opcions` |