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