UNPKG

reaviz

Version:

Data Visualization using React

8 lines (7 loc) 217 B
import { FC } from 'react'; export interface GradientStopProps { offset: number | string; stopOpacity: number | string; color?: string; } export declare const GradientStop: FC<Partial<GradientStopProps>>;