import React from 'react'; import { Text } from '@veeqo/ui'; import { ViewName } from '../../types'; import { Popup, Content, Header, Footer, Button, Icon, Wrap, Description, } from './styled'; type ConfirmationPropsType = { className: string; shouldShow: boolean; viewName: ViewName; onCancel: () => void; onDelete: () => void; }; const Confirmation = ({ className, shouldShow, viewName, onCancel, onDelete, }: ConfirmationPropsType) => (
{`Remove ${viewName} view`}
This cannot be undone.
); export default Confirmation;