import React, { useState } from 'react' import { Select, Container, Form } from '@toptal/picasso' import { SPACING_4 } from '@toptal/picasso-utils' const Example = () => { const [value, setValue] = useState('') const handleChange = (event: React.ChangeEvent<{ value: string }>) => { setValue(event.target.value) } return ( Select is disabled ({ ...option, disabled: index % 2 === 0, }))} value={value} placeholder='Choose an option...' width='auto' /> Native options are disabled