Files
outline/app/components/ClickablePadding.js
2019-03-13 22:59:25 -07:00

11 lines
251 B
JavaScript

// @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;