import React from "react"
import styled from "styled-components"
import Box from "../Box"

const Inline = styled(Box)`
  display: inline;
`

export default Inline

