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.

40 lines (39 loc) 1.47 kB
import type { CSSRuleObject } from 'tailwindcss/types/config.js'; export declare const rules: CSSRuleObject; export interface ButtonHooks { 'hook-button': CSSRuleObject; 'hook-disabled': CSSRuleObject; 'hook-default': CSSRuleObject; 'hook-default-hover': CSSRuleObject; 'hook-default-focus': CSSRuleObject; 'hook-default-active': CSSRuleObject; 'hook-default-disabled': CSSRuleObject; 'hook-primary': CSSRuleObject; 'hook-primary-hover': CSSRuleObject; 'hook-primary-focus': CSSRuleObject; 'hook-primary-active': CSSRuleObject; 'hook-primary-disabled': CSSRuleObject; 'hook-secondary': CSSRuleObject; 'hook-secondary-hover': CSSRuleObject; 'hook-secondary-focus': CSSRuleObject; 'hook-secondary-active': CSSRuleObject; 'hook-secondary-disabled': CSSRuleObject; 'hook-danger': CSSRuleObject; 'hook-danger-hover': CSSRuleObject; 'hook-danger-focus': CSSRuleObject; 'hook-danger-active': CSSRuleObject; 'hook-danger-disabled': CSSRuleObject; 'hook-link': CSSRuleObject; 'hook-link-hover': CSSRuleObject; 'hook-link-disabled': CSSRuleObject; 'hook-text': CSSRuleObject; 'hook-text-hover': CSSRuleObject; 'hook-text-disabled': CSSRuleObject; 'hook-small': CSSRuleObject; 'hook-large': CSSRuleObject; 'hook-misc': CSSRuleObject; } export interface Args { hooks: Partial<ButtonHooks>; } export declare const addHooks: (args: Args) => CSSRuleObject;