Cuando intento mostrar un ícono MUI importado, obtengo los siguientes errores:
errores
Mi código
import React from 'react' import ThreeDRotation from '@mui/icons-material/ThreeDRotation'; export const Temp = () => { return ( <div> <ThreeDRotation /> </div> ) }
Creo que tal vez estás usando la importación incorrecta, puedes probar así:
import ThreeDRotation from '@mui/material/ThreeDRotation';
, puedes probar esto: