@nousantx/tenoxui-preset
Version:
Ready to use tenoxui preset with minimal setup.
13 lines (12 loc) • 444 B
TypeScript
import type { Config as TenoxUIConfig } from '@tenoxui/static';
import { type ColorFormat } from './lib/color';
export interface Config {
sizing: number;
colors: {
[key: string]: string;
};
colorVariant: ColorFormat;
}
export { is, merge } from '@nousantx/someutils';
export { color, colorLib } from './lib/color';
export declare function createConfig({ sizing, colors, colorVariant }?: Partial<Config>): TenoxUIConfig;