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