Normally spans should not get any margin-top, so what gives? Also, for some reason, if I place a Text instance inside a form element, then it no longer gets the margin-top as it normally should be the case?
import React from 'react';
import { Text } from 'grommet';
import SandboxComponent from './SandboxComponent';
export default () => (
<SandboxComponent>
<Text margin={{top: '10px'}}>Ricky town, population... Ricky</Text>
</SandboxComponent>
);
https://codesandbox.io/s/github/grommet/grommet-sandbox?initialpath=text&module=%2Fsrc%2FText.js