UNPKG

@jay-js/ui

Version:

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

6 lines (5 loc) 196 B
import { TBase, TBaseTagMap } from "../Base/Base.types.js"; export type TDrawer<T extends TBaseTagMap> = { asChild?: boolean; position?: "top" | "left" | "right" | "bottom"; } & TBase<T>;