import type { SVGProps } from "react"; export interface IMNProps extends SVGProps { /** * Icon size (width and height) * @default 16 */ size?: number | string; } /** * Isle of Man — IMN icon from flag category * * @example * * */ export const IMN = ({ size = 16, ...props }: IMNProps) => ( );