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