import React from 'react'; interface G2IconProps { width?: number | string; height?: number | string; className?: string; color?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export function G2Icon({ width = 2500, height = 2500, className = '', color = '#ff492c' }: G2IconProps) { return ( ); }