UNPKG

ukelli-ui

Version:

Base on React's UI lib. Make frontend's dev simpler and faster.

15 lines (14 loc) 597 B
/// <reference types="react" /> export declare const ThemeColor: string[]; export declare const ExampleColors: string[]; export declare const NatureColors: string[]; export declare const GrayscaleColors: string[]; export declare const StatusColors: string[]; export declare const ColorGroup: string[]; declare type ForEachColorParams = (color: string, idx: number) => JSX.Element | JSX.Element[]; /** * 遍历颜色系统选项 * @param Colors */ export declare const ForEachColor: (Colors?: string[]) => (getComponent: ForEachColorParams) => (JSX.Element | JSX.Element[])[] | null; export {};