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