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 type { TBase, TBaseTagMap } from "@jay-js/elements"; export type TDropdown<T extends TBaseTagMap> = { position?: "dropdown-top" | "dropdown-bottom" | "dropdown-left" | "dropdown-right"; openOnHover?: boolean; forceOpen?: boolean; toEnd?: boolean; } & TBase<T>;