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.
26 lines (25 loc) • 898 B
TypeScript
import type { CSSRuleObject } from 'tailwindcss/types/config.js';
export declare const rules: CSSRuleObject;
export declare const media: CSSRuleObject;
export interface ModalHooks {
'hook-modal': CSSRuleObject;
'hook-dialog': CSSRuleObject;
'hook-full': CSSRuleObject;
'hook-header': CSSRuleObject;
'hook-body': CSSRuleObject;
'hook-footer': CSSRuleObject;
'hook-title': CSSRuleObject;
'hook-close': CSSRuleObject;
'hook-close-hover': CSSRuleObject;
'hook-close-default': CSSRuleObject;
'hook-close-default-hover': CSSRuleObject;
'hook-close-outside': CSSRuleObject;
'hook-close-outside-hover': CSSRuleObject;
'hook-close-full': CSSRuleObject;
'hook-close-full-hover': CSSRuleObject;
'hook-misc': CSSRuleObject;
}
export interface Args {
hooks: Partial<ModalHooks>;
}
export declare const addHooks: (args: Args) => CSSRuleObject;