UNPKG

michihouse-components-tmp

Version:

Biblioteca de componentes da MichiHouse

8 lines (7 loc) 284 B
import React from "react"; export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> { label?: string; labelCentered?: boolean; } declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>; export { Input };