I tried a lot but i am not able to find a way to do it. Where is its exact location in material-ui? I saw some people using it. Any help is appreciated.
My best guess was :
import MoreVertIcon from '@material-ui/icons/more-vert';
I tried a lot but i am not able to find a way to do it. Where is its exact location in material-ui? I saw some people using it. Any help is appreciated.
My best guess was :
import MoreVertIcon from '@material-ui/icons/more-vert';
Share
Improve this question
edited Jul 1, 2018 at 11:56
Tholle
113k22 gold badges208 silver badges197 bronze badges
asked Jul 1, 2018 at 11:48
snssns
3211 gold badge4 silver badges19 bronze badges
3 Answers
Reset to default 7Make sure you install the icon library with npm install -S @material-ui/icons
and then import it like this:
import MoreVertIcon from '@material-ui/icons/MoreVert';
If you wonder what the name of a particular icon is, you can see them listed here.
Mui v5
import:
import MoreVertIcon from '@mui/icons-material/MoreVert';
https://mui./ponents/material-icons/?query=MoreVert&selected=MoreVert
Before use material ui icon You may need to import for that. Steps:-
- Open CMD
- Copy this mand:- " npm install -S @material-ui/icons "
- Import icon that you want " import MoreVertIcon from '@material-ui/icons/more-vert'; "
Thanks