Skip to content

Instantly share code, notes, and snippets.

@SaraVieira
Created July 31, 2018 10:25
Show Gist options
  • Save SaraVieira/b75f946faf52325ce6b9c84234ed702c to your computer and use it in GitHub Desktop.
Save SaraVieira/b75f946faf52325ce6b9c84234ed702c to your computer and use it in GitHub Desktop.
import React from "react"
import style from "./button.st.css"
export default (props) => (
<button
{...style(
"root",
{ secondary: props.secondary, tertiary: props.tertiary },
props
)}
>
<span className={style.text}>{props.children}</span>
</button>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment