Skip to content

Instantly share code, notes, and snippets.

@AndrewIngram
Last active December 14, 2016 00:04
Show Gist options
  • Save AndrewIngram/ff6b939df315db0f3448 to your computer and use it in GitHub Desktop.
Save AndrewIngram/ff6b939df315db0f3448 to your computer and use it in GitHub Desktop.
Stateless function Button component
import React from 'react';
import cx from 'classnames';
import styles from './Button.css';
const Button = ({modifier="default", size="medium", href, children, ...props}) => {
const classes = cx([styles.root, styles[`variant-${modifier}`], styles[`size-${size}`]]);
return href ?
<a className={classes} href={href} {...props}>{children}</a> :
<button className={classes} {...props}>{children}</button>
};
export default Button;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment