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