2022-02-14 17:09:35 +08:00
|
|
|
---
|
|
|
|
order: 19
|
2022-02-16 21:14:51 +08:00
|
|
|
version: 4.19.0
|
2022-02-14 17:09:35 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 自定义状态
|
|
|
|
en-US: Status
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
2022-02-16 21:14:51 +08:00
|
|
|
使用 `status` 为 Input 添加状态,可选 `error` 或者 `warning`。
|
2022-02-14 17:09:35 +08:00
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
2022-02-16 21:14:51 +08:00
|
|
|
Add status to Input with `status`, which could be `error` or `warning`.
|
2022-02-14 17:09:35 +08:00
|
|
|
|
|
|
|
```tsx
|
|
|
|
import ClockCircleOutlined from '@ant-design/icons/ClockCircleOutlined';
|
2022-05-21 22:14:15 +08:00
|
|
|
import { Input, Space } from 'antd';
|
|
|
|
import React from 'react';
|
2022-02-14 17:09:35 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => (
|
2022-02-14 17:09:35 +08:00
|
|
|
<Space direction="vertical" style={{ width: '100%' }}>
|
|
|
|
<Input status="error" placeholder="Error" />
|
|
|
|
<Input status="warning" placeholder="Warning" />
|
|
|
|
<Input status="error" prefix={<ClockCircleOutlined />} placeholder="Error with prefix" />
|
|
|
|
<Input status="warning" prefix={<ClockCircleOutlined />} placeholder="Warning with prefix" />
|
|
|
|
</Space>
|
|
|
|
);
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
export default App;
|
2022-02-14 17:09:35 +08:00
|
|
|
```
|