security-checklist/components/LoadingChecklistItem/index.js

77 lines
1.6 KiB
JavaScript
Raw Normal View History

2019-01-13 07:00:23 +00:00
// @flow
import React from 'react';
import { ShimmerInboxThread, ShimmerBase, ShimmerLine, Cover } from './style';
import Card from '../Card';
const LoadingChecklistItem = () => (
2019-01-14 00:19:24 +00:00
<div style={{ marginBottom: '24px' }}>
2019-01-13 20:18:28 +00:00
<Card>
<ShimmerInboxThread>
<ShimmerBase>
<ShimmerLine />
<Cover
style={{
top: '0',
left: '40px',
height: '40px',
width: '16px',
}}
/>
<Cover
style={{
top: '0',
left: '50%',
height: '40px',
width: '50%',
}}
/>
2019-01-13 07:00:23 +00:00
2019-01-13 20:18:28 +00:00
<Cover
style={{
top: '20px',
left: '40px',
height: '8px',
width: '50%',
}}
/>
2019-01-13 07:00:23 +00:00
2019-01-13 20:18:28 +00:00
<Cover
style={{
top: '40px',
left: '0',
height: '16px',
width: '100%',
}}
/>
<Cover
style={{
top: '40px',
left: '0',
height: '100%',
width: '48px',
}}
/>
<Cover
style={{
top: '72px',
left: '48px',
height: '8px',
width: '100%',
}}
/>
<Cover
style={{
top: '72px',
left: '35%',
height: '24px',
width: '100%',
}}
/>
</ShimmerBase>
</ShimmerInboxThread>
</Card>
</div>
2019-01-13 07:00:23 +00:00
);
export default LoadingChecklistItem;