import styled from "styled-components"; import { background, border, layout, position, space } from "styled-system"; import { BoxProps } from "./types"; const Box = styled.div` ${background} ${border} ${layout} ${position} ${space} `; export default Box;