10 lines
244 B
TypeScript
10 lines
244 B
TypeScript
import styled from "styled-components";
|
|
|
|
const ClickablePadding = styled.div<{ grow?: boolean; minHeight?: string }>`
|
|
min-height: ${(props) => props.minHeight || "50vh"};
|
|
flex-grow: 100;
|
|
cursor: text;
|
|
`;
|
|
|
|
export default ClickablePadding;
|