@blockscout/ui-toolkit
Version:
A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects
21 lines (20 loc) • 393 B
TypeScript
export interface ChartMargin {
top?: number;
right?: number;
bottom?: number;
left?: number;
}
export interface ChartOffset {
x?: number;
y?: number;
}
export declare enum ChartResolution {
DAY = "DAY",
WEEK = "WEEK",
MONTH = "MONTH",
YEAR = "YEAR"
}
export declare const CHART_RESOLUTION_LABELS: Array<{
id: ChartResolution;
title: string;
}>;