UNPKG

reagraph

Version:

WebGL Node-based Graph for React

11 lines (10 loc) 338 B
import { SvgProps as DreiSvgProps } from '@react-three/drei'; import { FC } from 'react'; import { NodeRendererProps } from '../../types'; export type SvgProps = NodeRendererProps & Omit<DreiSvgProps, 'src' | 'id'> & { /** * The image to display on the icon. */ image: string; }; export declare const Svg: FC<SvgProps>;