In the mockups, the spacing between elements is done through a baseline grid. What that means is that spacing is measured in `units` over a `base`. I.e. `1.5 unit` where the base is `6px` corresponds to `9px`. {insert image from sketch} To allow a declarative way of defining spacing in every component in our UI framework, a composer was written that styles each component instance with based on the props passed to it. E.g.: ```html ``` Is going to translate into a ` ); // export Button wrapped export default Baseline(Button); ``` Whoever required that ` ```