UNPKG

@jay-js/ui

Version:

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

9 lines (8 loc) 554 B
import "./TextInput.style.css"; import { Box } from "../Box/Box.js"; import { Input } from "../Input/Input.js"; import { TTextInput } from "./TextInput.types.js"; import { Typography } from "../Typography/Typography.js"; import { mergeClasses } from "../../utils/mergeClasses.js"; import { Base, TBaseTagMap } from "../Base"; export declare function TextInput<T extends TBaseTagMap = "input">({ label, labelAlt, helpers, placeholder, bordered, ghost, color, inputSize, startAdornment, endAdornment, ...props }?: TTextInput<T>): HTMLElementTagNameMap[T];