import React, { useState } from 'react' import { Select, Container } from '@toptal/picasso' import { SPACING_4 } from '@toptal/picasso-utils' import { Settings16 } from '@toptal/picasso-icons' const Example = () => { const [value, setValue] = useState('') const handleChange = (event: React.ChangeEvent<{ value: string }>) => { setValue(event.target.value) } return ( } placeholder='Choose an option...' width='auto' />