import React, { FC } from 'react' import styled from 'styled-components' import { BlockProps } from '../../types/Block' const StyledBlock = styled.div` width: calc(100% * ${(props) => props.size} / 12); padding: 0px 10px; box-sizing: border-box; ` const Block: FC = ({ children, size = 12, ...props }) => { return ( {children} ) } export default Block