mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 00:49:39 +08:00
511 B
511 B
order | version | title | ||||
---|---|---|---|---|---|---|
10 | 4.19.0 |
|
zh-CN
使用 status
为 Transfer 添加状态,可选 error
或者 warning
。
en-US
Add status to Transfer with status
, which could be error
or warning
.
import { Space, Transfer } from 'antd';
import React from 'react';
const App: React.FC = () => (
<Space direction="vertical">
<Transfer status="error" />
<Transfer status="warning" showSearch />
</Space>
);
export default App;