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