Adds horizontal or vertical spacing between two or more components. The max number that can be passed to spacing is 16.
import { Spacing } from '@bedrock-ui/core';
<Text>Hello</Text>
<Spacing h={8} />
<Text>World</Text>
Hello
World
<Flex>
  <Text>Hello</Text>
  <Spacing w={8} />
  <Text>World</Text>
</Flex>
Hello
World