summaryrefslogtreecommitdiff
path: root/src/components/app/sidebars/topology/machine/DeleteMachineComponent.js
blob: 8da39b30de3b9bc66b4c824488b7e262650a24c1 (plain)
1
2
3
4
5
6
7
8
9
10
import React from "react";

const DeleteMachineComponent = ({ onClick }) => (
  <div className="btn btn-danger btn-block" onClick={onClick}>
    <span className="fa fa-trash mr-2" />
    Delete this machine
  </div>
);

export default DeleteMachineComponent;