UNPKG

rharuow-ds

Version:

Modern React Design System with 8 components: Button, Input (with password support), Textarea, Select, AsyncSelect, MultiSelect, MultiAsyncSelect, and RadioGroup. Full React Hook Form integration, Tailwind CSS styling, and CSS Variables for theme customiz

14 lines (13 loc) 474 B
import * as React from "react"; export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> { } export interface CustomProps { name: string; label?: string; Icon?: React.ElementType; iconClassName?: string; containerClassName?: string; iconAction?: React.MouseEventHandler<HTMLDivElement>; } declare const Input: React.ForwardRefExoticComponent<InputProps & CustomProps & React.RefAttributes<HTMLInputElement>>; export { Input };