Skip to content

Instantly share code, notes, and snippets.

@mistadikay
Last active March 10, 2016 10:07
Show Gist options
  • Save mistadikay/daab6c69fd329d80e625 to your computer and use it in GitHub Desktop.
Save mistadikay/daab6c69fd329d80e625 to your computer and use it in GitHub Desktop.
/*
.
└── core-components/
└── button/
└── index.js
*/
export default function Button({ mods, mix, children, ...props }) {
return (
<label block="button" mods={mods} mix={mix}>
<input block="button" elem="control" type="button" {...props} />
{children}
</label>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment