summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/computer-screen.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-01 11:43:38 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-01 11:43:38 +0200
commit769c124ff54960ac9db4f9028b095c1385cd3961 (patch)
treeec28364158db15fd7c242a9f71faf1e1087a089d /src/components/atoms/icons/computer-screen.test.tsx
parent58005ad6ca761309eb8a92d2489030a7b1bad523 (diff)
chore: add a computer screen icon component
Diffstat (limited to 'src/components/atoms/icons/computer-screen.test.tsx')
-rw-r--r--src/components/atoms/icons/computer-screen.test.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/atoms/icons/computer-screen.test.tsx b/src/components/atoms/icons/computer-screen.test.tsx
new file mode 100644
index 0000000..c0e53e0
--- /dev/null
+++ b/src/components/atoms/icons/computer-screen.test.tsx
@@ -0,0 +1,9 @@
+import { render } from '@test-utils';
+import ComputerScreen from './computer-screen';
+
+describe('ComputerScreen', () => {
+ it('renders a computer screen icon', () => {
+ const { container } = render(<ComputerScreen />);
+ expect(container).toBeDefined();
+ });
+});