Skip to content

Commit

Permalink
Fix GitHub spelling
Browse files Browse the repository at this point in the history
It's 'GitHub" not "Github"
  • Loading branch information
mxstbr committed Oct 10, 2018
1 parent 947f3c6 commit b9efbbd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/icons/github.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';

const Github = props => {
const GitHub = props => {
const { color, size, ...otherProps } = props;
return (
<svg
Expand All @@ -21,14 +21,14 @@ const Github = props => {
);
};

Github.propTypes = {
GitHub.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};

Github.defaultProps = {
GitHub.defaultProps = {
color: 'currentColor',
size: '24',
};

export default Github;
export default GitHub;

0 comments on commit b9efbbd

Please sign in to comment.