franken-ui
Version:
Franken UI is an HTML-first, open-source library of UI components based on the utility-first Tailwind CSS with UIkit 3 compatibility. The design is based on shadcn/ui ported to be framework-agnostic.
27 lines (26 loc) • 873 B
TypeScript
import type { CSSRuleObject, PluginUtils } from 'tailwindcss/types/config.js';
export declare const rules: CSSRuleObject;
export declare const media: CSSRuleObject;
export interface BaseHooks {
'hook-body': CSSRuleObject;
'hook-link': CSSRuleObject;
'hook-link-hover': CSSRuleObject;
'hook-code': CSSRuleObject;
'hook-heading': CSSRuleObject;
'hook-h1': CSSRuleObject;
'hook-h2': CSSRuleObject;
'hook-h3': CSSRuleObject;
'hook-h4': CSSRuleObject;
'hook-h5': CSSRuleObject;
'hook-h6': CSSRuleObject;
'hook-hr': CSSRuleObject;
'hook-blockquote': CSSRuleObject;
'hook-blockquote-footer': CSSRuleObject;
'hook-pre': CSSRuleObject;
'hook-misc': CSSRuleObject;
}
export interface Args {
hooks: Partial<BaseHooks>;
theme: PluginUtils['theme'];
}
export declare const addHooks: (args: Args) => CSSRuleObject;