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