simple-react-ui-kits
Version:
A lightweight, customizable React UI component library built with TypeScript and Tailwind CSS
12 lines • 429 B
TypeScript
import React from 'react';
export interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> {
label?: string;
error?: string;
helperText?: string;
leftIcon?: React.ReactNode;
rightIcon?: React.ReactNode;
radius?: 'none' | 'sm' | 'md' | 'lg' | 'xl' | 'full';
size?: 'sm' | 'md' | 'lg';
}
export declare const Input: React.FC<InputProps>;
//# sourceMappingURL=Input.d.ts.map