diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-01 11:49:59 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-01 11:49:59 +0200 |
| commit | 3dba396791b37c4ae4dbdaf8e553ed636bc2ecc8 (patch) | |
| tree | 7a7e624164961fe27197b66b948e399133fc81e5 /src/components/atoms/icons/magnifying-glass.test.tsx | |
| parent | 9b31e81c8d45eaf0dc6971655dc08b0d0a1cbe56 (diff) | |
chore: add a magnifying glass icon component
Diffstat (limited to 'src/components/atoms/icons/magnifying-glass.test.tsx')
| -rw-r--r-- | src/components/atoms/icons/magnifying-glass.test.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/atoms/icons/magnifying-glass.test.tsx b/src/components/atoms/icons/magnifying-glass.test.tsx new file mode 100644 index 0000000..8e788f7 --- /dev/null +++ b/src/components/atoms/icons/magnifying-glass.test.tsx @@ -0,0 +1,9 @@ +import { render } from '@test-utils'; +import MagnifyingGlass from './magnifying-glass'; + +describe('MagnifyingGlass', () => { + it('renders a magnifying glass icon', () => { + const { container } = render(<MagnifyingGlass />); + expect(container).toBeDefined(); + }); +}); |
