aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/images/icons/svg-paths/icons-paths/posts-stack-icon-paths.tsx
blob: daf14d4510a456f120000a83fd556c6f4c465130 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* eslint-disable react/jsx-no-literals */
import type { FC } from 'react';
import styles from './posts-stack-icon-paths.module.scss';

/**
 * PostsStackIconPaths
 *
 * Render the svg paths to make a posts stack icon.
 */
export const PostsStackIconPaths: FC = () => (
  <>
    <path
      className={styles.bg}
      d="M 28.992096,1.4822128 H 90.770752 V 82.312253 H 28.992096 Z"
    />
    <path
      className={styles.bg}
      d="m 19.110672,8.992094 h 61.778656 v 80.83004 H 19.110672 Z"
    />
    <path
      className={styles.bg}
      d="m 9.229248,17.687748 h 61.778656 v 80.83004 H 9.229248 Z"
    />
    <path
      className={styles.picture}
      d="M 18.149242,74.65544 H 33.375246 V 90.194215 H 18.149242 Z"
    />
    <path
      className={styles.picture}
      d="M 18.142653,24.858688 H 62.094499 V 35.908926 H 18.142653 Z"
    />
    <path className={styles.lines} d="m 17.618576,41.908926 h 45 v 2 h -45 z" />
    <path className={styles.lines} d="m 17.618576,49.908926 h 45 v 2 h -45 z" />
    <path className={styles.lines} d="m 17.618576,57.908926 h 45 v 2 h -45 z" />
    <path className={styles.lines} d="m 17.618576,65.908926 h 45 v 2 h -45 z" />
    <path
      className={styles.lines}
      d="m 41.833105,73.424828 h 20.785471 v 2 H 41.833105 Z"
    />
    <path
      className={styles.lines}
      d="m 41.833105,81.424828 h 20.785471 v 2 H 41.833105 Z"
    />
    <path
      className={styles.lines}
      d="m 41.833105,89.424828 h 20.785471 v 2 H 41.833105 Z"
    />
  </>
);