aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/posts-stack.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-03-31 23:19:53 +0200
committerArmand Philippot <git@armandphilippot.com>2022-03-31 23:24:37 +0200
commit60c284c7ad7383313886c5f4716589cb6c180693 (patch)
tree1b0f9c6c2d93d0d40915cd02837392b4b5a37f53 /src/components/atoms/icons/posts-stack.test.tsx
parent9627efaf47db699ae379fda4db3abd77c55fe8f1 (diff)
chore: add a posts stack svg icon component
Diffstat (limited to 'src/components/atoms/icons/posts-stack.test.tsx')
-rw-r--r--src/components/atoms/icons/posts-stack.test.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/atoms/icons/posts-stack.test.tsx b/src/components/atoms/icons/posts-stack.test.tsx
new file mode 100644
index 0000000..8f44fa9
--- /dev/null
+++ b/src/components/atoms/icons/posts-stack.test.tsx
@@ -0,0 +1,9 @@
+import { render } from '@test-utils';
+import PostsStack from './posts-stack';
+
+describe('PostsStack', () => {
+ it('renders a posts stack icon', () => {
+ const { container } = render(<PostsStack />);
+ expect(container).toBeDefined();
+ });
+});