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