import * as React from 'react'; import Autocomplete from '@mui/material/Autocomplete'; import SvgIcon from '@mui/material/SvgIcon'; import TextField from '@mui/material/TextField'; const movies = [ { label: 'The Lord of the Rings: The Two Towers', year: 2002, }, ]; export default function SmallAutocompleteWithStartAdornment() { return ( ( ), }, }} /> )} /> ); }