UNPKG

react-epic-trails-ds

Version:

A flexible and customizable design system for React, providing pre-built UI components, typography, and themes to enhance web app development.

22 lines (18 loc) 615 B
import { InputHTMLAttributes } from "react"; export type NInputProp = InputHTMLAttributes<HTMLInputElement> & { Size?: "small" | "medium" | "large"|"fit"|"full"; Label?: string; Hint?: string; State?: "Default" | "Active" | "Correct" | "ViewOnly" | "Loading" | "Disabled" | "Incorrect"; curved?: boolean; id?: string; clear?: boolean; }; export type AInputProp = InputHTMLAttributes<HTMLInputElement> & { Size?: "small" | "medium" | "large"; Label?: string; Hint?: string; State?: "Default" | "Error" | "Success" | "Loading"; input?: string[]; curved?: boolean; };