wix-style-react
Version:
16 lines (14 loc) • 436 B
JavaScript
/* eslint-disable react/prop-types */
import React from 'react';
import { MessageBoxFunctionalLayout } from 'wix-style-react';
export default () => (
<MessageBoxFunctionalLayout
title="Delete Files?"
confirmText="Main"
cancelText="Secondary"
theme="red"
dataHook="destructive-alert-secondary"
>
Do you really want to delete selected files? Once removed, cannot be undone.
</MessageBoxFunctionalLayout>
);