--- order: 11 title: zh-CN: 三种大小 en-US: Three Sizes --- ## zh-CN 三种大小的输入框,若不设置,则为 `middle`。 ## en-US The input box comes in three sizes. `middle` will be used if `size` is omitted. ```tsx import type { RadioChangeEvent } from 'antd'; import { DatePicker, Radio, Space } from 'antd'; import type { SizeType } from 'antd/es/config-provider/SizeContext'; import React, { useState } from 'react'; const { RangePicker } = DatePicker; const App: React.FC = () => { const [size, setSize] = useState('middle'); const handleSizeChange = (e: RadioChangeEvent) => { setSize(e.target.value); }; return ( Large middle Small ); }; export default App; ```