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