UNPKG

@jay-js/ui

Version:

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

5 lines (4 loc) 277 B
import { TBase, TBaseTagMap } from "../Base/Base.types.js"; export type TProgress<T extends TBaseTagMap> = { color?: "progress-primary" | "progress-secondary" | "progress-accent" | "progress-info" | "progress-success" | "progress-warning" | "progress-error"; } & TBase<T>;