UNPKG

react-neat-ui

Version:

A customisable react component library focused on neat and clean approach.

9 lines (8 loc) 292 B
/** @jsxImportSource theme-ui */ import React, { InputHTMLAttributes } from 'react'; export interface InputProps extends InputHTMLAttributes<HTMLInputElement> { inputSize?: 'lg' | 'md' | 'sm'; withIcon?: React.ReactNode; } declare const Input: React.FC<InputProps>; export { Input };