@while-and-for/tremor-react
Version:
The React library to build dashboards faster.
27 lines (26 loc) • 636 B
TypeScript
/// <reference types="react" />
import { Sizing } from "lib";
export type BadgeProportionTypes = {
paddingX: string;
paddingY: string;
fontSize: string;
};
export declare const badgeProportionsIconOnly: {
[char: string]: BadgeProportionTypes;
};
export declare const badgeProportionsWithText: {
[char: string]: BadgeProportionTypes;
};
export declare const iconSizes: {
[size: string]: Sizing;
};
export type ColorTypes = {
bgColor: string;
textColor: string;
};
export declare const colors: {
[key: string]: ColorTypes;
};
export declare const deltaIcons: {
[key: string]: React.ElementType;
};