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