@tenoxui/preset-tailwind
Version:
Minimal tailwindcss preset for tenoxui
26 lines (25 loc) • 594 B
TypeScript
import type { Property } from '@tenoxui/moxie';
export declare const layout: {
property: (sizing?: number) => Property;
classes: {
boxSizing: {
'box-border': string;
'box-content': string;
};
display: {
hidden: string;
};
isolation: {
isolate: string;
'isolation-auto': string;
};
position: {
[x: string]: string;
};
visibility: {
visible: string;
invisible: string;
collapse: string;
};
};
};