import classes from './Icon.module.css'; import { Icon as MDIcon } from '@mdi/react'; interface Props { icon: string; color?: string; } export const Icon = (props: Props): JSX.Element => { const MDIcons = require('@mdi/js'); let iconPath = MDIcons[props.icon]; if (!iconPath) { console.log(`Icon ${props.icon} not found`); iconPath = MDIcons.mdiCancel; } return ( ); };