UNPKG

@jay-js/ui

Version:

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

6 lines (5 loc) 277 B
import type { TBase, TBaseTagMap } from "@jay-js/elements"; export type TIndicatorItem<T extends TBaseTagMap> = { vertical?: "indicator-top" | "indicator-middle" | "indicator-bottom"; horizontal?: "indicator-start" | "indicator-center" | "indicator-end"; } & TBase<T>;