UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

22 lines (21 loc) 571 B
import { ColorScaleItem } from "../types.mjs"; import * as react28 from "react"; //#region src/color/ColorScales/index.d.ts interface ColorScalesProps { /** * @description Index of the mid highlight color in the scale */ midHighLight: number; /** * @description Name of the color scale */ name: string; /** * @description Color scale item object */ scale: ColorScaleItem; } declare const ColorScales: react28.NamedExoticComponent<ColorScalesProps>; //#endregion export { ColorScales, ColorScalesProps }; //# sourceMappingURL=index.d.mts.map