ant-design/components/popconfirm/demo/icon.md
2019-05-07 14:57:32 +08:00

428 B
Raw Blame History

order title
4
zh-CN en-US
自定义 Icon 图标 Customize icon

zh-CN

使用 icon 自定义提示 icon

en-US

Set icon props to customize the icon.

import { Popconfirm, Icon } from 'antd';

ReactDOM.render(
  <Popconfirm
    title="Are you sure"
    icon={<Icon type="question-circle-o" style={{ color: 'red' }} />}
  >
    <a href="#">Delete</a>
  </Popconfirm>,
  mountNode,
);