feat: 增加圈子

This commit is contained in:
秋水浮尘
2024-04-16 23:26:25 +08:00
parent 00f2d0baf7
commit de66a23d05
6 changed files with 57 additions and 19 deletions

View File

@@ -0,0 +1,20 @@
import { Input } from 'antd'
const { TextArea } = Input
const Circle = () => {
return (
<div className='circle-box'>
<div className='top-input-box'>
<TextArea
showCount
maxLength={100}
// onChange={onChange}
placeholder='disable resize'
style={{ height: 120, resize: 'none', outline: 'none' }}
/>
</div>
</div>
)
}
export default Circle