aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/feed.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-26 18:16:00 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-26 18:16:00 +0200
commit5324664e87bedfaa01ba62c0c847ef5b861e69b3 (patch)
treebeb3b76b89fa59ffd5192b540013e4d5f3e77740 /src/components/atoms/icons/feed.test.tsx
parent8a6f09b564d5d2f02d0a2605f6b52070a910aaa3 (diff)
chore: add a Feed icon component
Diffstat (limited to 'src/components/atoms/icons/feed.test.tsx')
-rw-r--r--src/components/atoms/icons/feed.test.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/atoms/icons/feed.test.tsx b/src/components/atoms/icons/feed.test.tsx
new file mode 100644
index 0000000..fed9da9
--- /dev/null
+++ b/src/components/atoms/icons/feed.test.tsx
@@ -0,0 +1,9 @@
+import { render } from '@test-utils';
+import Feed from './feed';
+
+describe('Feed', () => {
+ it('renders a feed icon', () => {
+ const { container } = render(<Feed />);
+ expect(container).toBeDefined();
+ });
+});