ant-design/components/popconfirm/demo/icon.tsx
Star fb4029c17f
doc: fix Scroll To Top (#41436)
Co-authored-by: star <a@qqfav.com>
2023-03-30 23:23:04 +08:00

16 lines
402 B
TypeScript

import React from 'react';
import { QuestionCircleOutlined } from '@ant-design/icons';
import { Button, Popconfirm } from 'antd';
const App: React.FC = () => (
<Popconfirm
title="Delete the task"
description="Are you sure to delete this task?"
icon={<QuestionCircleOutlined style={{ color: 'red' }} />}
>
<Button type="link">Delete</Button>
</Popconfirm>
);
export default App;