// @flow import styled from 'styled-components'; const ClickablePadding = styled.div` min-height: 6em; cursor: ${({ onClick }) => (onClick ? 'text' : 'default')}; ${({ grow }) => grow && `flex-grow: 100;`}; `; export default ClickablePadding;