/* @flow */
import React from 'react';
import Icon from '../Icons';
type Props = {
href: ?String,
size: Number,
};
const Github = (props: Props) => {
if (props.href) {
return (
);
} else {
return ;
}
};
Github.defaultProps = {
size: 24,
};
export default Github;