fybdp-d3-kg
Version:
Knowledge Graph using React and D3.js
13 lines (12 loc) • 461 B
TypeScript
import { Component, ReactElement } from 'react';
import { GradientStop, GradientStopProps } from './GradientStop';
export interface RadialGradientProps {
id: string;
stops: ReactElement<GradientStopProps, typeof GradientStop>[];
color?: string;
radius: number | string;
}
export declare class RadialGradient extends Component<RadialGradientProps> {
static defaultProps: Partial<RadialGradientProps>;
render(): JSX.Element;
}