import type { IconProps } from "@mui/material/Icon"; import type { FC } from "react"; /** * Properties for the `DynamicIcon` component. */ export interface DynamicIconProps extends Omit, "component" | "classes"> { /** * The icon ID or image URL. */ src: string; } declare const DynamicIcon: FC; export default DynamicIcon;