UNPKG

@jay-js/ui

Version:

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

5 lines (4 loc) 249 B
import type { TBase, TBaseTagMap } from "@jay-js/elements"; export type TStepItem<T extends TBaseTagMap> = { color?: "step-primary" | "step-secondary" | "step-accent" | "step-info" | "step-success" | "step-warning" | "step-error"; } & TBase<T>;