import { forwardRef } from 'react'; // icons import { Icon } from '@iconify/react'; // @mui import Box, { BoxProps } from '@mui/material/Box'; // import { IconifyProps } from './types'; // ---------------------------------------------------------------------- interface Props extends BoxProps { icon: IconifyProps; } const Iconify = forwardRef(({ icon, width = 20, sx, ...other }, ref) => ( )); export default Iconify;