UNPKG

antd-color-editor

Version:

An open-source color editor for designing color system

16 lines (15 loc) 591 B
/// <reference types="react" /> import type { IScales } from "../genScalesByConfig"; /****************************************************** ************************* Dom ************************* ******************************************************/ export interface IScaleBlock { colorType?: 'mix' | 'hex' | 'hct' | 'rgb' | 'hsl' | 'hsv' | 'cts'; highLights?: number[]; isFliterStep?: boolean; midHighLight?: number; scale: IScales; showDetail?: boolean; } declare const ScaleBlock: import("react").NamedExoticComponent<IScaleBlock>; export default ScaleBlock;