import type { SVGProps } from "react"; export interface G2OriginalProps extends SVGProps { /** * Icon size (width and height) * @default 16 */ size?: number | string; } /** * G2Original icon from social-media category * * @example * * */ export const G2Original = ({ size = 16, ...props }: G2OriginalProps) => ( );