UNPKG

@jay-js/ui

Version:

A library of UI components for Jay JS with Tailwind CSS and daisyUI.

7 lines (6 loc) 456 B
import { Base } from "../Base/Base.js"; import { TButton } from "./Button.types.js"; import { TBaseTagMap } from "../Base/Base.types.js"; import { RippleEffect } from "../RippleEffect/index.js"; import { mergeClasses } from "../../utils/mergeClasses.js"; export declare function Button<T extends TBaseTagMap = "button">({ size, format, color, variant, active, fullWidth, glass, animation, ripple = true, ...props }?: TButton<T>): HTMLElementTagNameMap[T];