@kiwicom/smart-faq
Version:
28 lines (23 loc) • 642 B
JavaScript
// @flow
import React from 'react';
import ContentLoader from 'react-content-loader';
import styled from 'styled-components';
const Wrapper = styled.div`
padding: 15px 24px;
`;
const BoardingPassesLoader = () => (
<Wrapper>
<ContentLoader
height={30}
width={500}
speed={1}
primaryColor="#e8edf1"
secondaryColor="#d9dee2"
>
<rect x="0" y="12" rx="0" ry="0" width="25" height="18" />
<rect x="40" y="12" rx="0" ry="0" width="130" height="18" />
<rect x="470" y="12" rx="0" ry="0" width="70" height="18" />
</ContentLoader>
</Wrapper>
);
export default BoardingPassesLoader;