You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
414 B
21 lines
414 B
import { Popconfirm as AntPopconfirm, PopconfirmProps } from 'antd'
|
|
|
|
const Popconfirm = (props: PopconfirmProps) => {
|
|
|
|
const disabled = props.disabled
|
|
|
|
let attr = {}
|
|
if (typeof disabled !== 'undefined') {
|
|
attr = {
|
|
disabled: disabled
|
|
}
|
|
}
|
|
|
|
return (
|
|
<AntPopconfirm {...props}>
|
|
<a {...attr}>{props.children}</a>
|
|
</AntPopconfirm>
|
|
)
|
|
}
|
|
|
|
export default Popconfirm
|