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