import style from 'styled-components' const Container = style.div` width: ${props => props.width}; ` Container.defaultProps = { width: '140px' } export default Container