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