@jay-js/ui
Version:
A library of UI components for Jay JS with Tailwind CSS and daisyUI.
9 lines (8 loc) • 503 B
TypeScript
import "./TextArea.style.css";
import { Box } from "../Box/Box.js";
import { TTextarea } from "./TextArea.types.js";
import { Typography } from "../Typography/Typography.js";
import { Base } from "../Base/Base.js";
import { mergeClasses } from "../../utils/mergeClasses.js";
import { TBaseTagMap } from "../Base";
export declare function TextArea<T extends TBaseTagMap = "div">({ label, labelAlt, helpers, placeholder, bordered, ghost, color, size, ...props }?: TTextarea<T>): HTMLElementTagNameMap[T];