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