import React from 'react'; interface GlobeIconProps { color?: string; className?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export function GlobeIcon({ className , color = 'white' }: GlobeIconProps) { return ( ); }