How to set the margin on an innerBlock in a block variation?

If we create a paragraph and give it a margin of 2 ( default settings no custom scales or theme.json ) then we get this: <!– wp:paragraph {“style”:{“spacing”:{“margin”:{“top”:”var:preset|spacing|30″,”right”:”var:preset|spacing|30″,”bottom”:”var:preset|spacing|30″,”left”:”var:preset|spacing|30″}}}} –> <p style=”margin-top:var(–wp–preset–spacing–30);margin-right:var(–wp–preset–spacing–30);margin-bottom:var(–wp–preset–spacing–30);margin-left:var(–wp–preset–spacing–30)”>stuff</p> <!– /wp:paragraph –> It sounds reasonable to extract var(–wp–preset–spacing–30) from the style attribute but this wouldn’t be right, as that’s generated HTML. Instead we … Read more