UNPKG

@jay-js/ui

Version:

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

6 lines (5 loc) 386 B
import { Base } from "../Base/Base.js"; import { mergeClasses } from "../../utils/mergeClasses.js"; import { TCheckbox } from "./Checkbox.types.js"; import { TBaseTagMap } from "../Base/Base.types.js"; export declare function Checkbox<T extends TBaseTagMap = "input">({ label, color, size, position = "checkbox-after", formControl, ...props }?: TCheckbox<T>): HTMLElementTagNameMap[T];