mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 03:59:01 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
16 lines
397 B
TypeScript
16 lines
397 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 danger>Delete</Button>
|
|
</Popconfirm>
|
|
);
|
|
|
|
export default App;
|