ant-design/components/popconfirm/index.en-US.md

32 lines
1.1 KiB
Markdown
Raw Normal View History

---
category: Components
type: Feedback
2016-08-26 15:07:46 +08:00
title: Popconfirm
---
A simple and compact confirmation dialog of an action.
2016-09-10 13:43:30 +08:00
## When To Use
A simple and compact dialog used for asking for user confirmation.
The difference with the `confirm` modal dialog is that it's more lightweight than the static popped full-screen confirm modal.
## API
2017-10-25 10:25:44 +08:00
| Param | Description | Type | Default value |
| ----- | ----------- | ---- | ------------- |
| cancelText | text of the Cancel button | string | `Cancel` |
| okText | text of the Confirm button | string | `Confirm` |
| okType | Button `type` of the Confirm button | string | `primary` |
| title | title of the confirmation box | string\|ReactNode | - |
| onCancel | callback of cancel | function(e) | - |
| onConfirm | callback of confirmation | function(e) | - |
2018-07-06 23:48:37 +08:00
| icon | customize icon of confirmation | ReactNode | <Icon type="exclamation-circle" /> |
Consult [Tooltip's documentation](https://ant.design/components/tooltip/#API) to find more APIs.
## Note
Please ensure that the child node of `Popconfirm` accepts `onMouseEnter`, `onMouseLeave`, `onFocus`, `onClick` events.