/// <reference types="react" />
declare type Props = {
    color?: string;
};
declare const SphereIcon: ({ color }: Props) => JSX.Element;
export default SphereIcon;
