joyent-portal/consoles/my-joy-images/src/components/description.js

15 lines
338 B
JavaScript
Raw Normal View History

2018-02-13 22:03:57 +02:00
import React from 'react';
import { Row, Col } from 'joyent-react-styled-flexboxgrid';
import { Margin } from 'styled-components-spacing';
import { P } from 'joyent-ui-toolkit';
export default ({ children }) => (
<Row>
2018-05-23 19:29:04 +03:00
<Col xs="12" sm="8">
2018-04-06 17:53:44 +03:00
<Margin bottom="3">
2018-02-13 22:03:57 +02:00
<P>{children}</P>
</Margin>
</Col>
</Row>
);