UNPKG

reaviz

Version:

Data Visualization using React

13 lines (12 loc) 319 B
import { FC } from 'react'; export interface DiscreteLegendSymbolProps { /** * Color for the symbol set by the `DiscreteLegendEntry`. */ color: string; /** * CSS Class names. */ className?: string; } export declare const DiscreteLegendSymbol: FC<Partial<DiscreteLegendSymbolProps>>;