react-app-integration-tests-sample icon indicating copy to clipboard operation
react-app-integration-tests-sample copied to clipboard

import error: 'GithubCircle' is not exported from 'mdi-material-ui'

Open LayMui opened this issue 4 years ago • 1 comments

when I run npm run start I got the above import error

LayMui avatar Jan 28 '21 11:01 LayMui

Apparently MaterialUi Design changed the naming for the Github-Icon from GithubCircle to Github @LayMui you can change the import to

import { Github } from 'mdi-material-ui';

instead of

import { GithubCircle } from 'mdi-material-ui';

and in the components accordlingy

  • UserRepositoriesListItem.jsx
  • UserSelectionForm.jsx

marius-turtle avatar Nov 15 '21 19:11 marius-turtle