/// interface IProps { data: string; color?: string; } declare const GeoIcon: ({ data, color }: IProps) => JSX.Element; export default GeoIcon;