@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
11 lines (10 loc) • 351 B
TypeScript
import { Variants } from '../../designSystem/variants';
import { CustomTheme } from '@/types/styled';
export interface IThemeObject {
[theme: string]: CustomTheme;
}
export interface IThemeObjectVariants {
[theme: string]: Variants;
}
export declare const themesObject: IThemeObject;
export declare const variantsObject: IThemeObjectVariants;