UNPKG

@jay-js/ui

Version:

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

6 lines (5 loc) 405 B
import type { TBase, TBaseTagMap } from "@jay-js/elements"; export type TChatComponent<T extends TBaseTagMap> = { component?: "chat-bubble" | "chat-image" | "chat-header" | "chat-footer"; color?: "chat-bubble-primary" | "chat-bubble-neutral" | "chat-bubble-secondary" | "chat-bubble-accent" | "chat-bubble-info" | "chat-bubble-success" | "chat-bubble-warning" | "chat-bubble-error"; } & TBase<T>;