import React, { FC } from "react"; import styled from "styled-components"; import CSS from "csstype"; interface SpacerProps { style?: CSS.Properties; space?: string; } const Spacer: FC = ({ style, space = "20px" }) => { return ; }; export default Spacer; const StyledDiv = styled.div` height: ${(props) => props.space}; `;