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