UNPKG

@blockscout/ui-toolkit

Version:

A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects

11 lines (10 loc) 493 B
import { default as React } from 'react'; import * as d3 from 'd3'; export interface ChartGridLineProps extends Omit<React.SVGProps<SVGGElement>, 'scale'> { type: 'vertical' | 'horizontal'; scale: d3.ScaleTime<number, number> | d3.ScaleLinear<number, number>; noAnimation?: boolean; size: number; ticks: number; } export declare const ChartGridLine: React.MemoExoticComponent<({ type, scale, ticks, size, noAnimation, ...props }: ChartGridLineProps) => React.JSX.Element>;