import * as React from 'react'; import Stack from '@mui/material/Stack'; import Chip from '@mui/material/Chip'; import Autocomplete from '@mui/material/Autocomplete'; import TextField from '@mui/material/TextField'; const movies = [ { title: 'The Lord of the Rings: The Two Towers', year: 2002, }, ]; export default function Sizes() { return ( option.title} defaultValue={movies[0]} disableClearable renderInput={(params) => } /> option.title} defaultValue={[movies[0]]} disableClearable renderInput={(params) => } /> option.title} defaultValue={movies[0]} renderInput={(params) => } /> option.title} defaultValue={[movies[0]]} renderInput={(params) => } /> option.title} defaultValue={movies[0]} disableClearable renderInput={(params) => ( )} /> option.title} defaultValue={[movies[0]]} disableClearable renderInput={(params) => ( )} /> option.title} defaultValue={movies[0]} disableClearable renderInput={(params) => ( )} /> option.title} defaultValue={[movies[0]]} disableClearable renderTags={(value, getTagProps) => value.map((option, index) => { const { key, ...other } = getTagProps({ index }); return ( ); }) } renderInput={(params) => ( )} /> ); }