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