blob: d0218f38c40910fb18a8745cd16be399d67f995b (
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 { faSave } from '@fortawesome/free-solid-svg-icons'
import { Button } from 'reactstrap'
const AddPrefabComponent = ({ onClick }) => (
<Button color="primary" block onClick={onClick}>
<FontAwesomeIcon icon={faSave} className="mr-2" />
Save this rack to a prefab
</Button>
)
export default AddPrefabComponent
|