UNPKG

@meshify/form-elements

Version:
12 lines (11 loc) 274 B
/// <reference types="react" /> import "./../styles/textarea.scss"; interface IProps { name: string; label?: string; required: boolean; placeholder?: string; id?: string; } declare const Textarea: (props: IProps) => JSX.Element; export default Textarea;