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