@rocketsofawesome/mirage
Version:
[Live Demo of the Pattern Library](https://rocketsofawesome.github.io/mirage/)
23 lines (20 loc) • 384 B
JavaScript
import React from 'react'
import { FlexRow, FlexCol } from 'SRC'
const FullBleed = ({className, ...props}) => {
return (
<FlexRow
className={className}
padding={false}>
<FlexCol
nested
mobile={{
width: 4
}}
desktop={{
width: 12
}}
{...props}/>
</FlexRow>
)
}
export default FullBleed