mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
8054abe81f
* feat: DatePicker and TimePicker support status * docs: demo add version * chore: code clean
506 B
506 B
order | version | title | ||||
---|---|---|---|---|---|---|
19 | 4.19.0 |
|
zh-CN
使用 status
为 TimePicker 添加状态,可选 error
或者 warning
。
en-US
Add status to TimePicker with status
, which could be error
or warning
.
import { TimePicker, Space } from 'antd';
const Status: React.FC = () => (
<Space direction="vertical">
<TimePicker status="error" />
<TimePicker status="warning" />
</Space>
);
ReactDOM.render(<Status />, mountNode);