@rocketsofawesome/mirage
Version:
[Live Demo of the Pattern Library](https://rocketsofawesome.github.io/mirage/)
32 lines (26 loc) • 522 B
JavaScript
import React from 'react'
import styled from 'styled-components'
import { FlexRow, FlexCol } from 'SRC'
const BaseFullBleed = ({className, ...props}) => {
return (
<FlexRow
className={className}
padding={false}>
<FlexCol
nested
mobile={{
width: 4
}}
desktop={{
width: 12
}}
{...props}/>
</FlexRow>
)
}
const FullBleed = styled(BaseFullBleed)`
margin-bottom: 2rem;
`
FullBleed.propTypes = {
}
export default FullBleed