From 60c284c7ad7383313886c5f4716589cb6c180693 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 31 Mar 2022 23:19:53 +0200 Subject: chore: add a posts stack svg icon component --- src/components/atoms/icons/posts-stack.test.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/components/atoms/icons/posts-stack.test.tsx (limited to 'src/components/atoms/icons/posts-stack.test.tsx') 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(); + expect(container).toBeDefined(); + }); +}); -- cgit v1.2.3