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.
38 lines (37 loc) • 1.45 kB
TypeScript
import type { CSSRuleObject } from 'tailwindcss/types/config.js';
export declare const rules: CSSRuleObject;
export declare const media: CSSRuleObject;
export interface NavbarHooks {
'hook-navbar': CSSRuleObject;
'hook-container': CSSRuleObject;
'hook-nav-item': CSSRuleObject;
'hook-nav-item-hover': CSSRuleObject;
'hook-nav-item-onclick': CSSRuleObject;
'hook-nav-item-active': CSSRuleObject;
'hook-item': CSSRuleObject;
'hook-toggle': CSSRuleObject;
'hook-toggle-hover': CSSRuleObject;
'hook-toggle-icon': CSSRuleObject;
'hook-toggle-icon-hover': CSSRuleObject;
'hook-subtitle': CSSRuleObject;
'hook-primary': CSSRuleObject;
'hook-transparent': CSSRuleObject;
'hook-sticky': CSSRuleObject;
'hook-dropdown': CSSRuleObject;
'hook-dropdown-large': CSSRuleObject;
'hook-dropdown-dropbar': CSSRuleObject;
'hook-dropdown-dropbar-large': CSSRuleObject;
'hook-dropdown-nav': CSSRuleObject;
'hook-dropdown-nav-item': CSSRuleObject;
'hook-dropdown-nav-item-hover': CSSRuleObject;
'hook-dropdown-nav-item-active': CSSRuleObject;
'hook-dropdown-nav-subtitle': CSSRuleObject;
'hook-dropdown-nav-header': CSSRuleObject;
'hook-dropdown-nav-divider': CSSRuleObject;
'hook-dropbar': CSSRuleObject;
'hook-misc': CSSRuleObject;
}
export interface Args {
hooks: Partial<NavbarHooks>;
}
export declare const addHooks: (args: Args) => CSSRuleObject;