@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
20 lines • 550 B
text/typescript
import { ColorScaleItem } from "../types.mjs";
//#region src/color/CssVar/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: import("react").NamedExoticComponent<ColorScalesProps>;
//#endregion
export { ColorScalesProps, ColorScales as default };
//# sourceMappingURL=index.d.mts.map