2019-12-02 15:08:24 +11:00

11 lines
180 B
JavaScript

export const Section = props => (
<>
<section {...props} />
<style jsx>{`
section {
margin: calc(var(--daui-spacing) * 2) 0;
}
`}</style>
</>
)