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