import type { SxProps } from '@mui/material/styles'; import { Theme } from '@mui/system'; import { HTMLAttributes } from 'react'; export interface IconProps extends HTMLAttributes { src: string; onClick?: () => void; sx?: SxProps; alt?: string; }