Button
A styled version of the button
component. Allows customization with styled-components
package.
Demo
API
Usage is the same as the original <button>
component/JSX.
Example:
import { Button } from 'react-horcrux';
export default YourComponent function() {
return <Button onClick={doSomething}>your button</Button>;
}