UNPKG

@blockscout/ui-toolkit

Version:

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

8 lines (7 loc) 276 B
import { default as React } from 'react'; export interface ChartOverlayProps { width: number; height: number; children: React.ReactNode; } export declare const ChartOverlay: React.ForwardRefExoticComponent<ChartOverlayProps & React.RefAttributes<SVGRectElement>>;