I need to convert a Material UI icon to white because background is another color.
I am importing white from their core colors library:
import { white } from '@material-ui/core/colors';
So I can do:
style={{ color: white }}
However, I am getting an error message:
./src/components/footer.js
Attempted import error: 'white' is not exported from '@material-ui/core/colors'.
I cannot see what I am doing wrong based on their docs. I have throughly researched why I am getting this error but couldn't find solution.