Skip to content

Instantly share code, notes, and snippets.

@gjorgiev
Last active January 26, 2021 21:36
Show Gist options
  • Save gjorgiev/6fbe5ed5a1d787d894253f6297a3d202 to your computer and use it in GitHub Desktop.
Save gjorgiev/6fbe5ed5a1d787d894253f6297a3d202 to your computer and use it in GitHub Desktop.
Button component
.Button {
background: #cad2c5;
display: flex;
border: 1px solid rgba(0,0,0,0.05);
box-sizing: border-box;
align-items: center;
justify-content: center;
width: 25%;
font-size: 24px;
color: rgba(0, 0, 0, 0.5);
height: 20%;
min-width: 25%;
}
.Button[data-size="2"] {
height: 40%;
}
.Button[data-value="null"] {
pointer-events: none;
}
.Button:hover {
background: #d7ddd3;
cursor: default;
}
import React, {Component} from 'react';
import "./Button.css";
class Button extends Component {
render(){
return(
<div
className="Button"
onClick={this.props.onClick}
data-size={this.props.size}
data-value={this.props.value}>
{this.props.label}
</div>
);
}
}
export default Button;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment