antd-color-editor
Version:
An open-source color editor for designing color system
15 lines (14 loc) • 546 B
TypeScript
/// <reference types="react" />
/******************************************************
************************* Dom *************************
******************************************************/
export interface IScaleRow {
alpha?: boolean;
colorType: 'mix' | 'hex' | 'hct' | 'rgb' | 'hsl' | 'hsv' | 'cts';
scale: string[];
showDetail?: boolean;
solidScale?: string[];
title: 'light' | 'lightA' | 'dark' | 'darkA';
}
declare const ScaleRow: import("react").NamedExoticComponent<IScaleRow>;
export default ScaleRow;