UNPKG

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.

34 lines (33 loc) 1.19 kB
import type { CSSRuleObject } from 'tailwindcss/types/config.js'; export declare const rules: CSSRuleObject; export declare const media: CSSRuleObject; export interface CardHooks { 'hook-card': CSSRuleObject; 'hook-body': CSSRuleObject; 'hook-header': CSSRuleObject; 'hook-footer': CSSRuleObject; 'hook-media': CSSRuleObject; 'hook-media-top': CSSRuleObject; 'hook-media-bottom': CSSRuleObject; 'hook-media-left': CSSRuleObject; 'hook-media-right': CSSRuleObject; 'hook-title': CSSRuleObject; 'hook-badge': CSSRuleObject; 'hook-hover': CSSRuleObject; 'hook-default': CSSRuleObject; 'hook-default-title': CSSRuleObject; 'hook-default-hover': CSSRuleObject; 'hook-default-header': CSSRuleObject; 'hook-default-footer': CSSRuleObject; 'hook-primary': CSSRuleObject; 'hook-primary-title': CSSRuleObject; 'hook-primary-hover': CSSRuleObject; 'hook-secondary': CSSRuleObject; 'hook-secondary-title': CSSRuleObject; 'hook-secondary-hover': CSSRuleObject; 'hook-misc': CSSRuleObject; } export interface Args { hooks: Partial<CardHooks>; } export declare const addHooks: (args: Args) => CSSRuleObject;