UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

22 lines (21 loc) 688 B
import { Component, 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?: any; } interface LinearAxisLineState { id: string; } export declare class LinearAxisLine extends Component<LinearAxisLineProps, LinearAxisLineState> { static defaultProps: Partial<LinearAxisLineProps>; state: LinearAxisLineState; render(): JSX.Element; } export {};