import React from 'react' import { css } from '@emotion/core' const DEFAULT_SIZE = '20px' export const FontAwesome = ({ icon: outerIcon, size, fill, cssProp }) => { const svgStyle = css` width: ${size || DEFAULT_SIZE}; height: ${size || DEFAULT_SIZE}; ${fill ? `& path { fill: ${fill}; }` : ''} ` const { icon, iconName } = outerIcon return ( {iconName} ) }