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