Last active
August 5, 2016 21:04
-
-
Save mikeyamadeo/46db5f51e8f63574d168d87256ed9783 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { StyleSheet, css } from 'aphrodite' | |
const styles = StyleSheet.create({ | |
base: { | |
border: 'none', | |
outline: 'none' | |
} | |
}) | |
const Button = ({children, className, ...rest}) => | |
<button {...rest} className={`${className} ${css(styles.base)} `}> | |
{ children } | |
</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment