aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/envelop.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-01 11:46:31 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-01 11:46:31 +0200
commit9b31e81c8d45eaf0dc6971655dc08b0d0a1cbe56 (patch)
tree3eb502178f9ef22004ba00952fc302befa5d5fad /src/components/atoms/icons/envelop.test.tsx
parent769c124ff54960ac9db4f9028b095c1385cd3961 (diff)
chore: add an envelop svg icon component
Diffstat (limited to 'src/components/atoms/icons/envelop.test.tsx')
-rw-r--r--src/components/atoms/icons/envelop.test.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/atoms/icons/envelop.test.tsx b/src/components/atoms/icons/envelop.test.tsx
new file mode 100644
index 0000000..072dc85
--- /dev/null
+++ b/src/components/atoms/icons/envelop.test.tsx
@@ -0,0 +1,9 @@
+import { render } from '@test-utils';
+import Envelop from './envelop';
+
+describe('Envelop', () => {
+ it('renders an envelop icon', () => {
+ const { container } = render(<Envelop />);
+ expect(container).toBeDefined();
+ });
+});