Skip to content

Commit

Permalink
fix(Button): Cleanup unused code/styles
Browse files Browse the repository at this point in the history
  • Loading branch information
floryst committed Apr 19, 2018
1 parent f8dbd6c commit 145e9d5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions Sources/ui/Button/Button.mcss
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
cursor: pointer;
transition: color .5s, border-color .5s;
outline: none;
-moz-outline: none;
-ms-outline: none;
-webkit-outline: none;
}

.button:hover {
Expand Down
2 changes: 0 additions & 2 deletions Sources/ui/Button/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,12 @@ function Button(props) {
}

Button.propTypes = {
style: PropTypes.object,
className: PropTypes.string,
children: PropTypes.any,
onClick: PropTypes.func,
};

Button.defaultProps = {
style: {},
className: '',
children: [],
onClick: () => {},
Expand Down

0 comments on commit 145e9d5

Please sign in to comment.