| 1 |
import { __ } from '@wordpress/i18n'; |
| 2 |
import BaseFieldEdit from '../../components/BaseFieldEdit'; |
| 3 |
import { Button } from '@wordpress/components'; |
| 4 |
|
| 5 |
export default function Edit( props ) { |
| 6 |
return ( |
| 7 |
<BaseFieldEdit { ...props }> |
| 8 |
<div> |
| 9 |
<Button isDestructive isSecondary disabled> |
| 10 |
{ __( 'Delete', 'profile-builder' ) } |
| 11 |
</Button> |
| 12 |
</div> |
| 13 |
</BaseFieldEdit> |
| 14 |
); |
| 15 |
} |
| 16 |
|