Files
react-test/docs/data/joy/components/autocomplete/SizeWithLabel.tsx.preview

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
316 B
Plaintext
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
<FormControl size="sm">
<FormLabel>Small field</FormLabel>
<Autocomplete
multiple
placeholder="Favorite movies"
options={top100Films}
getOptionLabel={(option) => option.title}
defaultValue={[top100Films[13]]}
/>
<FormHelperText>This is a small description.</FormHelperText>
</FormControl>