@confi/conflux-react-ui-test-package
Version:
Modern and minimalist React UI library.
13 lines (12 loc) • 509 B
TypeScript
import { ZeitUIThemesPalette } from '../styles/themes';
export declare type InputSize = {
heightRatio: string;
fontSize: string;
};
export declare const getSizes: (size?: "mini" | "small" | "medium" | "large" | undefined) => InputSize;
export declare type InputColor = {
color: string;
borderColor: string;
hoverBorder: string;
};
export declare const getColors: (palette: ZeitUIThemesPalette, status?: "default" | "secondary" | "success" | "warning" | "error" | undefined) => InputColor;