File size: 980 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
import React from 'react';
import { Container, Inner, Item, Pane, Title, SubTitle, Image } from './styles/jumbotron';
export default function Jumbotron({ children, direction = 'row', ...restProps }) {
return(
<Item direction={direction}>
<Inner direction={direction}>{children}</Inner>
</Item>
)
}
Jumbotron.Container = function JumbotronContainer({ children, ...restProps }) {
return<Container { ...restProps}>{children}</Container>;
}
Jumbotron.Pane = function JumbotronPane({ children, ...restProps }) {
return<Pane { ...restProps}>{children}</Pane>;
}
Jumbotron.Title = function JumbotronTitle({ children, ...restProps }) {
return<Title { ...restProps}>{children}</Title>;
}
Jumbotron.SubTitle = function JumbotronSubTitle({ children, ...restProps }) {
return<SubTitle { ...restProps}>{children}</SubTitle>;
}
Jumbotron.Image = function JumbotronImage({ ...restProps }) {
return<Image { ...restProps}></Image>;
}
|