1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00
vault-frontend/src/components/placeholders/ParagraphPlaceholder/index.tsx
2020-11-06 12:15:07 +07:00

28 lines
815 B
TypeScript

import React, { FC } from 'react';
import { Placeholder } from '~/components/placeholders/Placeholder';
import styles from './styles.module.scss';
import { Group } from '~/components/containers/Group';
const ParagraphPlaceholder = ({}) => (
<Group>
<div className={styles.para}>
<Placeholder width="120px" />
<Placeholder width="60px" />
<Placeholder width="30px" />
<Placeholder width="70px" />
<Placeholder width="160px" />
<Placeholder width="30px" />
</div>
<div className={styles.para}>
<Placeholder width="40px" />
<Placeholder width="30px" />
<Placeholder width="120px" />
<Placeholder width="70px" />
<Placeholder width="160px" />
<Placeholder width="30px" />
</div>
</Group>
);
export { ParagraphPlaceholder };