aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Icons/Blog/Blog.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-29 12:13:34 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-29 18:30:05 +0200
commit7e16f500cb7bc0cfd8bafbf6bb1555704f771231 (patch)
treebfc2b4a475cb06a787e2c4bdf284165644e82952 /src/components/Icons/Blog/Blog.tsx
parent5324664e87bedfaa01ba62c0c847ef5b861e69b3 (diff)
chore: remove old pages, components, helpers and types
Since I'm using new components, I will also rewrite the GraphQL queries so it is easier to start from scratch.
Diffstat (limited to 'src/components/Icons/Blog/Blog.tsx')
-rw-r--r--src/components/Icons/Blog/Blog.tsx62
1 files changed, 0 insertions, 62 deletions
diff --git a/src/components/Icons/Blog/Blog.tsx b/src/components/Icons/Blog/Blog.tsx
deleted file mode 100644
index bd32111..0000000
--- a/src/components/Icons/Blog/Blog.tsx
+++ /dev/null
@@ -1,62 +0,0 @@
-import styles from './Blog.module.scss';
-
-const BlogIcon = () => {
- return (
- <svg
- viewBox="0 0 100 100"
- xmlns="http://www.w3.org/2000/svg"
- className={styles.icon}
- >
- <path
- className={styles.background}
- d="M 28.992096,1.4822128 H 90.770752 V 82.312253 H 28.992096 Z"
- />
- <path
- className={styles.background}
- d="m 19.110672,8.992094 h 61.778656 v 80.83004 H 19.110672 Z"
- />
- <path
- className={styles.background}
- 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"
- />
- </svg>
- );
-};
-
-export default BlogIcon;