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