10 lines
402 B
JavaScript
10 lines
402 B
JavaScript
|
|
import React from 'react'
|
||
|
|
import Link from 'gatsby-link'
|
||
|
|
|
||
|
|
const Button = ({ text, url, classes}) => (
|
||
|
|
<div>
|
||
|
|
<Link to={url} className={`no-underline inline-block text-sm px-4 py-2 leading-none border rounded text-grey-lightest hover:border-transparent hover:text-white hover:bg-white mt-4 lg:mt-0 uppercase bg-grey-darkest hover:bg-teal ${classes}`}>{text}</Link>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
|
||
|
|
export default Button
|