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