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