From da9f0895bddd9385c1026715ac1b5e63594932eb Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 31 Mar 2022 23:00:41 +0200 Subject: chore: add a Sun icon component --- src/components/atoms/icons/sun.test.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/components/atoms/icons/sun.test.tsx (limited to 'src/components/atoms/icons/sun.test.tsx') diff --git a/src/components/atoms/icons/sun.test.tsx b/src/components/atoms/icons/sun.test.tsx new file mode 100644 index 0000000..21661a9 --- /dev/null +++ b/src/components/atoms/icons/sun.test.tsx @@ -0,0 +1,9 @@ +import { render } from '@test-utils'; +import Sun from './sun'; + +describe('Sun', () => { + it('renders a sun icon', () => { + const { container } = render(); + expect(container).toBeDefined(); + }); +}); -- cgit v1.2.3