Skip to content

Instantly share code, notes, and snippets.

@JonathanZWhite
Created April 24, 2017 01:01
Show Gist options
  • Save JonathanZWhite/02967408ddb3745873beec31d2537c3e to your computer and use it in GitHub Desktop.
Save JonathanZWhite/02967408ddb3745873beec31d2537c3e to your computer and use it in GitHub Desktop.
import React, { PropTypes } from 'react';
import { spacing } from '../../base/spacing';
function getSpacingSize(size) {
return `space${size}`;
}
function Spacing(props) {
return (
<div style={{ marginBottom: spacing[getSpacingSize(props.size)] }}>
{props.children}
</div>
);
}
export default Spacing;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment