import type { ImgHTMLAttributes } from 'react';
import type { SxProps, Theme } from '@mui/material/styles';
export interface IconProps extends ImgHTMLAttributes {
/** URL of the image to display */
src: string;
/** Accessible alt text for the image */
alt?: string;
/** Override width and height via MUI sx */
sx?: SxProps;
}