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