Hemadri Dasari
Hemadri Dasari

Reputation: 33974

Can't import Svg icons in material-ui@next

I have upgraded material ui version to v1.0.0-beta.26. With this update I am facing module not found issue when I try to import ActionCircle or any icon as like below.

Eg: import AccountCircle from 'material-ui-icons/AccountCircle';

Upvotes: 3

Views: 874

Answers (1)

Gregory Nowakowski
Gregory Nowakowski

Reputation: 1138

It seems that you're missing the icons package. Install the material-ui-icons package with this command in terminal:

npm install material-ui-icons --save

Upvotes: 5

Related Questions