react-svg-timeline
Version:
React Timeline Component
13 lines (12 loc) • 411 B
TypeScript
/// <reference types="react" />
import { ScaleLinear } from 'd3-scale';
import { Domain } from '../model';
import { ZoomLevels } from '../shared/ZoomScale';
interface Props {
height: number;
domain: Domain;
smallerZoomScale: ZoomLevels;
timeScale: ScaleLinear<number, number>;
}
export declare const GridLines: ({ height, domain, smallerZoomScale, timeScale }: Props) => JSX.Element;
export {};