react-pur
Version:
React UI component library (using styled-components)
18 lines (16 loc) • 349 B
JavaScript
// Same as Row, but allows items to be displayed beautifully
// In an easy way
export default {
name: 'ItemsRow',
type: 'div',
style: ({ spaceBetween = '15px', ...props }) => ({
display: 'flex',
flexWrap: 'wrap',
'& > *': {
marginRight: spaceBetween,
'&:last-child': {
marginRight: 0,
},
},
}),
};