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