mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-04 09:15:16 +00:00
450 B
450 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 4 |
|
zh-CN
自定义提示 icon。
en-US
Set icon props to customize the icon.
import { Popconfirm } from 'antd';
import { QuestionCircleOutlined } from '@ant-design/icons';
ReactDOM.render(
<Popconfirm title="Are you sure?" icon={<QuestionCircleOutlined style={{ color: 'red' }} />}>
<a href="#">Delete</a>
</Popconfirm>,
mountNode,
);