@blockscout/ui-toolkit
Version:
A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects
18 lines (17 loc) • 630 B
TypeScript
import { default as React } from 'react';
import { Resolution, TimeChartData } from './types';
export interface Props {
open: boolean;
onOpenChange: ({ open }: {
open: boolean;
}) => void;
title: string;
description?: string;
charts: TimeChartData;
resolution?: Resolution;
zoomRange?: [Date, Date];
handleZoom: (range: [Date, Date]) => void;
handleZoomReset: () => void;
}
declare const FullscreenChartModal: ({ charts, open, onOpenChange, title, description, resolution, zoomRange, handleZoom, handleZoomReset, }: Props) => React.JSX.Element;
export default FullscreenChartModal;