@apptane/react-ui-charts
Version:
Chart components in Apptane React UI framework
42 lines (41 loc) • 759 B
TypeScript
/// <reference types="react" />
import { Color, ColorMode } from "@apptane/react-ui-core";
import { Theme } from "@apptane/react-ui-theme";
export interface ChartEmptyBlockProps {
/**
* Theme.
*/
theme: Theme;
/**
* Color mode.
*/
colorMode: ColorMode;
/**
* Background color.
*/
background?: Color;
/**
* Content.
*/
children: React.ReactNode;
/**
* Width.
*/
width: number | string;
/**
* Height.
*/
height: number | string;
/**
* Position.
*/
position?: "absolute" | "relative";
/**
* Left offset.
*/
left?: number;
/**
* Top offset.
*/
top?: number;
}