UNPKG

@blockscout/ui-toolkit

Version:

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

14 lines (13 loc) 672 B
import { default as React } from 'react'; import { ChartResolution } from '../../types'; import { LineChartData } from '../types'; import { ChartMenuProps } from '../../components/ChartMenu'; export interface Props extends Omit<ChartMenuProps, 'csvData' | 'onFullscreenOpen'> { charts: LineChartData; resolution?: ChartResolution; zoomRange?: [Date, Date]; handleZoom: (range: [Date, Date]) => void; handleZoomReset: () => void; } declare const LineChartMenu: ({ items, charts, title, description, isLoading, chartRef, chartUrl, resolution, zoomRange, handleZoom, handleZoomReset, onShare, }: Props) => React.JSX.Element; export default LineChartMenu;