aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/arrow.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-03-31 22:53:16 +0200
committerArmand Philippot <git@armandphilippot.com>2022-03-31 22:55:41 +0200
commit53677c794aafd55fc649cf7663f47cbeaeddc5d0 (patch)
tree21b97b424af73e7a6b179224f534942464c09a75 /src/components/atoms/icons/arrow.test.tsx
parent4a79f0d5511d6a6732428687740f8190e000f1b9 (diff)
chore: add an Arrow icon component
Diffstat (limited to 'src/components/atoms/icons/arrow.test.tsx')
-rw-r--r--src/components/atoms/icons/arrow.test.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/atoms/icons/arrow.test.tsx b/src/components/atoms/icons/arrow.test.tsx
new file mode 100644
index 0000000..01813ce
--- /dev/null
+++ b/src/components/atoms/icons/arrow.test.tsx
@@ -0,0 +1,9 @@
+import { render } from '@test-utils';
+import Arrow from './arrow';
+
+describe('Arrow', () => {
+ it('renders an arrow icon', () => {
+ const { container } = render(<Arrow />);
+ expect(container).toBeDefined();
+ });
+});