UNPKG

@jay-js/ui

Version:

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

8 lines (7 loc) 284 B
import { TBase, TBaseTagMap } from "../Base/Base.types.js"; export type TDropdown<T extends TBaseTagMap> = { position?: "dropdown-top" | "dropdown-bottom" | "dropdown-left" | "dropdown-right"; openOnHover?: boolean; forceOpen?: boolean; toEnd?: boolean; } & TBase<T>;