@cfxjs/react-ui
Version:
Modern and minimalist React UI library.
11 lines (10 loc) • 383 B
TypeScript
import { TabVariant } from '../utils/prop-types';
import { CfxUIThemesPalette } from 'components/styles/themes';
declare type tabColors = {
color: string;
bgColor: string;
hoverColor: string;
hoverBgColor: string;
};
export declare const defaultGetColor: (palette: CfxUIThemesPalette, variant: TabVariant, disabled: boolean, active: boolean) => tabColors;
export {};