UNPKG

casefu-generator

Version:
14 lines (12 loc) 496 B
import React from 'react' import { Link } from 'react-router-dom' import { Button } from 'react-bootstrap' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { toUrlParams } from '../utils' export default ({ to, title, initialValues }) => <Button as={Link} to={`${to}?${initialValues ? toUrlParams(initialValues) : ''}`} variant="outline-secondary" className="float-right" title={title}> <FontAwesomeIcon icon="plus"/> &nbsp;Create </Button>