UNPKG

@jay-js/ui

Version:

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

7 lines (6 loc) 222 B
import type { TBase, TBaseTagMap } from "@jay-js/elements"; export type TTabItem<T extends TBaseTagMap> = { size?: "tab-xs" | "tab-sm" | "tab-md" | "tab-lg"; active?: boolean; disabled?: boolean; } & TBase<T>;