@jay-js/ui
Version:
A library of UI components for Jay JS with Tailwind CSS and daisyUI.
11 lines (10 loc) • 505 B
TypeScript
import { TBase, TBaseTagMap } from "../Base";
export type TFileInput<T extends TBaseTagMap> = {
label?: string;
labelAlt?: string;
helpers?: Array<HTMLElement>;
bordered?: boolean;
ghost?: boolean;
color?: "file-input-primary" | "file-input-secondary" | "file-input-accent" | "file-input-success" | "file-input-warning" | "file-input-info" | "file-input-error";
inputSize?: "file-input-xl" | "file-input-lg" | "file-input-md" | "file-input-sm" | "file-input-xs";
} & TBase<T>;