UNPKG

384 BJavaScriptView Raw
1import React from 'react'
2import { FlexRow, FlexCol } from 'SRC'
3
4const FullBleed = ({className, ...props}) => {
5 return (
6 <FlexRow
7 className={className}
8 padding={false}>
9 <FlexCol
10 nested
11 mobile={{
12 width: 4
13 }}
14 desktop={{
15 width: 12
16 }}
17 {...props}/>
18 </FlexRow>
19 )
20}
21
22export default FullBleed