@jay-js/ui
Version:
A library of UI components for Jay JS with Tailwind CSS and daisyUI.
7 lines (6 loc) • 427 B
TypeScript
import type { TBase, TBaseTagMap } from "@jay-js/elements";
export type TCheckbox<T extends TBaseTagMap = "input"> = {
color?: "checkbox-primary" | "checkbox-secondary" | "checkbox-accent" | "checkbox-neutral" | "checkbox-success" | "checkbox-warning" | "checkbox-info" | "checkbox-error";
size?: "checkbox-xl" | "checkbox-lg" | "checkbox-md" | "checkbox-sm" | "checkbox-xs";
indeterminate?: boolean;
} & TBase<T>;