UNPKG

@jay-js/ui

Version:

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

8 lines (7 loc) 253 B
import { TBase, TBaseTagMap } from "../Base/Base.types.js"; import { TListItem } from "../ListItem/ListItem.types.js"; export type TMenuItem<T extends TBaseTagMap> = { disabled?: boolean; active?: boolean; focus?: boolean; } & TListItem<T>;