UNPKG

@pagamio/frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

6 lines (5 loc) 275 B
import * as React from 'react'; type TextareaProps = React.TextareaHTMLAttributes<HTMLTextAreaElement>; declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>; export default Textarea; export type { TextareaProps };