UNPKG

@lobehub/charts

Version:

React modern charts components built on recharts

16 lines (15 loc) 449 B
/// <reference types="react" /> import type { Labels, Week } from "../types/charts"; interface ChartLabelsProps { blockMargin: number; blockSize: number; hideMonthLabels: boolean; labelHeight: number; labelMargin: number; labels: Labels; showWeekdayLabels: boolean; weekStart: number; weeks: Week[]; } declare const ChartLabels: import("react").NamedExoticComponent<ChartLabelsProps>; export default ChartLabels;