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