UNPKG

251 BJavaScriptView Raw
1import React from "react";
2import { Input } from "antd";
3
4export default function TextArea(props) {
5 return (
6 <Input.TextArea
7 autoSize={{ minRows: 4, maxRows: 7 }}
8 maxLength={100}
9 showCount={true}
10 {...props}
11 />
12 );
13}