recharts
Version:
React charts
8 lines (7 loc) • 333 B
TypeScript
import * as React from 'react';
import { ActiveShape, SymbolType } from './types';
import { ScatterPointItem } from '../cartesian/Scatter';
export declare function ScatterSymbol({ option, isActive, ...props }: {
option: ActiveShape<ScatterPointItem> | SymbolType;
isActive: boolean;
} & ScatterPointItem): React.JSX.Element;