reaviz
Version:
Data Visualization using React
19 lines (18 loc) • 403 B
TypeScript
import { FC } from 'react';
export interface GradientStopProps {
/**
* SVG `offset` attribute for the stop.
*/
offset: number | string;
/**
* SVG `stop-opacity` attribute for the stop.
*
* @default 1
*/
stopOpacity: number | string;
/**
* Stop color.
*/
color?: string;
}
export declare const GradientStop: FC<Partial<GradientStopProps>>;