2018-01-18 16:51:22 +02:00
|
|
|
import React from 'react';
|
|
|
|
import styled from 'styled-components';
|
|
|
|
import { Margin, Padding } from 'styled-components-spacing';
|
|
|
|
import Flex from 'styled-flex-component';
|
|
|
|
|
|
|
|
import { H3, Card } from 'joyent-ui-toolkit';
|
2018-01-23 14:20:36 +02:00
|
|
|
import NoPackagesImage from '@assets/no-packages.svg';
|
2018-01-18 16:51:22 +02:00
|
|
|
|
|
|
|
const NoPackagesTitle = styled(H3)`
|
|
|
|
color: ${props => props.theme.greyDark};
|
2018-02-05 16:18:30 +02:00
|
|
|
text-align: center;
|
2018-01-18 16:51:22 +02:00
|
|
|
`;
|
|
|
|
|
2018-02-01 12:38:12 +02:00
|
|
|
const FullWidthCard = styled(Card)`
|
2018-02-05 16:18:30 +02:00
|
|
|
width: calc(100% - 2px);
|
|
|
|
border-top: none;
|
2018-02-01 17:33:58 +02:00
|
|
|
`;
|
2018-02-01 12:38:12 +02:00
|
|
|
|
2018-01-18 16:51:22 +02:00
|
|
|
export default ({ children }) => (
|
2018-02-01 12:38:12 +02:00
|
|
|
<FullWidthCard>
|
2018-01-18 16:51:22 +02:00
|
|
|
<Padding all={6}>
|
|
|
|
<Flex alignCenter justifyCenter column>
|
|
|
|
<Margin bottom={2}>
|
2018-02-01 17:33:58 +02:00
|
|
|
<img src={NoPackagesImage} alt="Sad Animal" />
|
2018-01-18 16:51:22 +02:00
|
|
|
</Margin>
|
|
|
|
<NoPackagesTitle>{children}</NoPackagesTitle>
|
|
|
|
</Flex>
|
|
|
|
</Padding>
|
2018-02-01 12:38:12 +02:00
|
|
|
</FullWidthCard>
|
2018-01-18 16:51:22 +02:00
|
|
|
);
|