blob: 242f7a2b62492f74a3ff5ea5d883ed2df2400e8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import React from 'react'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faTrash } from '@fortawesome/free-solid-svg-icons'
import { Button } from 'reactstrap'
const DeleteRoomComponent = ({ onClick }) => (
<Button color="danger" outline block onClick={onClick}>
<FontAwesomeIcon icon={faTrash} className="mr-2" />
Delete this room
</Button>
)
export default DeleteRoomComponent
|