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