summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/cc-by-sa.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-03-31 23:29:17 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-01 11:21:07 +0200
commit3951a875a5c7619196239ce5f288f832d2f51224 (patch)
tree26724d06b29199a99f036a7c066e5d9bcd4496c0 /src/components/atoms/icons/cc-by-sa.test.tsx
parent60c284c7ad7383313886c5f4716589cb6c180693 (diff)
chore: add a CC BY SA svg icon component
Diffstat (limited to 'src/components/atoms/icons/cc-by-sa.test.tsx')
-rw-r--r--src/components/atoms/icons/cc-by-sa.test.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/atoms/icons/cc-by-sa.test.tsx b/src/components/atoms/icons/cc-by-sa.test.tsx
new file mode 100644
index 0000000..03d54f7
--- /dev/null
+++ b/src/components/atoms/icons/cc-by-sa.test.tsx
@@ -0,0 +1,9 @@
+import { render } from '@test-utils';
+import CCBySA from './cc-by-sa';
+
+describe('CCBySA', () => {
+ it('renders a CC BY SA icon', () => {
+ const { container } = render(<CCBySA />);
+ expect(container).toBeDefined();
+ });
+});