Skip to content

Instantly share code, notes, and snippets.

@prdxs
Last active April 1, 2021 15:48
Show Gist options
  • Save prdxs/d7a7e09249a30e09c0e9da12f77bdbea to your computer and use it in GitHub Desktop.
Save prdxs/d7a7e09249a30e09c0e9da12f77bdbea to your computer and use it in GitHub Desktop.
function StatelessButton({ className, size, color, children }) {
const style = {
backgroundColor: color,
padding: sizeToPadding[size],
fontSize: sizeToFontSize[size],
};
return (
<button className={clsx('StatelessButton', className)} style={style}>
{children}
</button>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment