mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-11 13:59:11 +08:00
26 lines
1.0 KiB
Markdown
26 lines
1.0 KiB
Markdown
---
|
|
category: Components
|
|
type: Feedback
|
|
title: Popconfirm
|
|
---
|
|
|
|
A simple and compact confirmation dialog of an action.
|
|
|
|
## When To Use
|
|
|
|
A simple and compact dialog used for asking an user confirmation.
|
|
|
|
The difference with `confirm` is more lightweight than the static popped full-screen confirm modal.
|
|
|
|
## API
|
|
|
|
| Param | Description | Type | Default value |
|
|
|-----------|------------------------------------------|---------------|--------|
|
|
| title | title of the confirmation box | React.Element | none |
|
|
| onConfirm | callback of confirmation | function | none |
|
|
| onCancel | callback of cancel | function | none |
|
|
| okText | text of the confirmation button | String | Confirm |
|
|
| cancelText| text of the cancel button | String | Cancel |
|
|
|
|
Consult [Tooltip's documentation](https://ant.design/components/tooltip/#API) to find more APIs.
|