From 3951a875a5c7619196239ce5f288f832d2f51224 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 31 Mar 2022 23:29:17 +0200 Subject: chore: add a CC BY SA svg icon component --- src/components/atoms/icons/cc-by-sa.test.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/components/atoms/icons/cc-by-sa.test.tsx (limited to 'src/components/atoms/icons/cc-by-sa.test.tsx') 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(); + expect(container).toBeDefined(); + }); +}); -- cgit v1.2.3