UNPKG

reagraph

Version:

WebGL Node-based Graph for React

11 lines (9 loc) 283 B
import { FC } from 'react'; import { NodeRendererProps } from '../../types'; export interface SphereWithIconProps extends NodeRendererProps { /** * The image to display on the icon. */ image: string; } export declare const SphereWithIcon: FC<SphereWithIconProps>;