UNPKG

antd-color-editor

Version:

An open-source color editor for designing color system

17 lines (16 loc) 360 B
/// <reference types="react" /> export declare enum TabKey { colors = 0, config = 1, token = 2, three = 3 } export interface INavBar { logo?: string; logoHref?: string; setTabKey: (v: any) => void; tabKey: TabKey; title?: string; } declare const NavBar: import("react").NamedExoticComponent<INavBar>; export default NavBar;