UNPKG

reaviz

Version:

Data Visualization using React

14 lines (12 loc) 320 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>>;