UNPKG

smart-react-components

Version:

React UI library, wide variety of editable ready to use Styled and React components.

12 lines (11 loc) 356 B
import React from "react"; import InputProps from "./InputProps"; import { Value, JSXElementProps } from "../props"; export interface Props extends InputProps<Value> { inputProps?: never; textareaProps?: JSXElementProps; minHeight?: number; maxHeight?: number; } declare const Textarea: React.FC<Props>; export default Textarea;