@tenoxui/preset-tailwind
Version:
Minimal tailwindcss preset for tenoxui
19 lines (18 loc) • 709 B
TypeScript
import type { Config, Property } from 'tenoxui';
import type { Classes } from '@tenoxui/types';
export declare const property: (sizing?: number) => Property;
export declare const classes: Classes;
export declare const breakpoints: {
[bp: string]: string;
};
export declare const preset: ({ sizing, order }?: {
sizing?: number | undefined;
order?: boolean | undefined;
}) => Partial<Config>;
export { preflight } from './styles/preflight';
export { properties as defaultProperties } from './styles/properties';
export { values } from './lib/values';
export { variants } from './lib/variants';
export { typeOrder } from './lib/typeOrder';
export * from './utils/createValue';
export default preset;