Source

src/components/Layout/Gutter.jsx

import styled from 'styled-components';
/**
 * Helper component for vertical spacing
 * 
 * @component
 * @category Components/Layout
 * @param {number} h - The size of the gutter in px
 * @returns {React.Component}
 */
export const Gutter = styled.div`
  width: 100%;
  display: block;
  height: ${(props) => props.h}px;
`;