-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[material-ui][Autocomplete] Improve design when there's a start adorn…
…ment for small autocomplete (#41781) Co-authored-by: ZeeshanTamboli <zeeshan.tamboli@gmail.com>
- Loading branch information
Showing
2 changed files
with
72 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
test/regressions/fixtures/Autocomplete/SmallAutocompleteWithStartAdornment.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
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 ( | ||
<Autocomplete | ||
options={movies} | ||
value={movies[0]} | ||
sx={{ width: 120, mt: 2 }} | ||
renderInput={(params) => ( | ||
<TextField | ||
{...params} | ||
label="Autocomplete" | ||
InputProps={{ | ||
...params.InputProps, | ||
startAdornment: ( | ||
<SvgIcon> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
fill="none" | ||
viewBox="0 0 24 24" | ||
strokeWidth={1.5} | ||
stroke="currentColor" | ||
> | ||
<path | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
d="M4.5 12a7.5 7.5 0 0015 0m-15 0a7.5 7.5 0 1115 0m-15 0H3m16.5 0H21m-1.5 0H12m-8.457 3.077l1.41-.513m14.095-5.13l1.41-.513M5.106 17.785l1.15-.964m11.49-9.642l1.149-.964M7.501 19.795l.75-1.3m7.5-12.99l.75-1.3m-6.063 16.658l.26-1.477m2.605-14.772l.26-1.477m0 17.726l-.26-1.477M10.698 4.614l-.26-1.477M16.5 19.794l-.75-1.299M7.5 4.205L12 12m6.894 5.785l-1.149-.964M6.256 7.178l-1.15-.964m15.352 8.864l-1.41-.513M4.954 9.435l-1.41-.514M12.002 12l-3.75 6.495" | ||
/> | ||
</svg> | ||
</SvgIcon> | ||
), | ||
}} | ||
/> | ||
)} | ||
/> | ||
); | ||
} |