---
title: Изаберите
image: /images/user-guide/what-is-twenty/20.png
---
Омогућава корисницима да одаберу вредност из листе предодређених опција.
```jsx
import { RecoilRoot } from 'recoil';
import { IconTwentyStar } from 'twenty-ui/display';
import { Select } from '@/ui/input/components/Select';
export const MyComponent = () => {
return (
);
};
```
| Својства | Тип | Опис |
| ----------- | ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| className | низ | Опциона CSS класа за додатно стилизовање |
| онемогућено | булевска вредност | When set to `true`, disables user interaction with the component |
| ознака | низ | The label to describe the purpose of the `Select` component |
| приПромени | функција | Функција коју позива када одабране вредности се промене |
| опције | низ | 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` |
| вредност | низ | Представља тренутно одабрану вредност. Требало би да одговара једној од `вредност` својстава у `опције` низу |