@universal-labs/preset-tailwind
Version:
Tailwindcss StyleSheet generator for react native/web
8 lines (7 loc) • 418 B
TypeScript
import type { Preset, __Theme__ } from '@universal-labs/native-twin';
export interface TailwindPresetBaseOptions {
colors?: __Theme__['colors'];
/** Allows to disable to tailwind preflight (default: `false` eg include the tailwind preflight ) */
disablePreflight?: boolean | undefined;
}
export declare function presetTailwind({ colors, disablePreflight, }?: TailwindPresetBaseOptions): Preset<__Theme__>;