diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-03-31 23:00:41 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-03-31 23:00:41 +0200 |
| commit | da9f0895bddd9385c1026715ac1b5e63594932eb (patch) | |
| tree | ef14c1fcc76ee450c76778504d799cbffdde541d /src/components/atoms/icons/sun.test.tsx | |
| parent | 53677c794aafd55fc649cf7663f47cbeaeddc5d0 (diff) | |
chore: add a Sun icon component
Diffstat (limited to 'src/components/atoms/icons/sun.test.tsx')
| -rw-r--r-- | src/components/atoms/icons/sun.test.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
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(<Sun />); + expect(container).toBeDefined(); + }); +}); |
