@rocketsofawesome/mirage
Version:
[Live Demo of the Pattern Library](https://rocketsofawesome.github.io/mirage/)
51 lines (45 loc) • 917 B
JavaScript
import React from 'react'
import styled from 'styled-components'
import PropTypes from 'prop-types'
import { FlexRow, FlexCol } from 'SRC'
const BaseDuet = ({
children,
className,
constrained,
padding
}) => {
return (
<FlexRow
padding={padding}
constrained={constrained}
className={className}>
{children.map((child, index) => {
return (
<FlexCol
key={index}
mobile={{width: 2}}
tablet={{width: 6}}
desktop={{width: 6}}>
{child}
</FlexCol>
)
})}
</FlexRow>
)
}
const Duet = styled(BaseDuet)`
${FlexCol} {
margin-bottom: 2rem;
}
`
Duet.propTypes = {
children: PropTypes.array,
className: PropTypes.string,
constrained: PropTypes.bool,
padding: PropTypes.bool
}
Duet.defaultProps = {
constrained: false,
padding: false
}
export default Duet