reaviz
Version:
Data Visualization using React
19 lines (17 loc) • 564 B
TypeScript
import { FC, ReactElement } from 'react';
import { GradientProps, Gradient } from '../../Gradient';
export interface LinearAxisLineProps {
height: number;
width: number;
strokeColor?: string;
strokeWidth: number;
strokeGradient: ReactElement<GradientProps, typeof Gradient> | null;
scale: any;
orientation: 'horizontal' | 'vertical';
className?: string;
}
export declare const LinearAxisLine: FC<Partial<LinearAxisLineProps>>;
export declare const linearAxisLineDefaultProps: {
strokeColor: string;
strokeWidth: number;
};