UNPKG

antd-color-editor

Version:

An open-source color editor for designing color system

18 lines (17 loc) 493 B
/// <reference types="react" /> import type { IScales } from "../../genScalesByConfig"; export interface IThreeView { config: { autoRotate: boolean; colorType: 'mix' | 'hex' | 'hct' | 'rgb' | 'hsl' | 'hsv' | 'cts'; hueZoom: number; showFloor: boolean; threeZoom: number; }; data: { name: string; scales: IScales; }[]; } declare const ThreeView: import("react").NamedExoticComponent<IThreeView>; export default ThreeView;