UNPKG

@jay-js/ui

Version:

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

7 lines (6 loc) 288 B
import { TBase, TBaseTagMap } from "../Base/Base.types.js"; import { TList } from "../List/List.types.js"; export type TMenu<T extends TBaseTagMap> = { size?: "menu-xs" | "menu-sm" | "menu-md" | "menu-lg" | "menu-xl"; position?: "menu-vertical" | "menu-horizontal"; } & TList<T>;