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