UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

16 lines (15 loc) 442 B
import { PureComponent } from 'react'; export interface DiscreteLegendSymbolProps { /** * Color for the symbol set by the `DiscreteLegendEntry`. */ color: string; /** * CSS Class names. */ className?: any; } export declare class DiscreteLegendSymbol extends PureComponent<DiscreteLegendSymbolProps> { static defaultProps: Partial<DiscreteLegendSymbolProps>; render(): JSX.Element; }