Skip to content

Instantly share code, notes, and snippets.

@mikeyamadeo
Last active August 5, 2016 21:04
Show Gist options
  • Save mikeyamadeo/46db5f51e8f63574d168d87256ed9783 to your computer and use it in GitHub Desktop.
Save mikeyamadeo/46db5f51e8f63574d168d87256ed9783 to your computer and use it in GitHub Desktop.
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