UNPKG

nowt-ui-library

Version:

Nothing unnecessary. Just clean UI.A lightweight and customizable UI component library built for speed and simplicity for React and Next.js.

14 lines (13 loc) 473 B
import React from 'react'; export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> { label?: string; labelClassName?: string; containerClassName?: string; containerStyle?: React.CSSProperties; helperText?: string; error?: string; leftIcon?: React.ReactNode; rightIcon?: React.ReactNode; } declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>; export default Input;