UNPKG

@jay-js/ui

Version:

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

7 lines (6 loc) 319 B
import type { TBase, TBaseTagMap } from "@jay-js/elements"; export type TAlert<T extends TBaseTagMap> = { severity?: "alert-error" | "alert-warning" | "alert-info" | "alert-success"; direction?: "alert-vertical" | "alert-horizontal"; variation?: "alert-outline" | "alert-dash" | "alert-soft"; } & TBase<T>;