From 3dba396791b37c4ae4dbdaf8e553ed636bc2ecc8 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 1 Apr 2022 11:49:59 +0200 Subject: chore: add a magnifying glass icon component --- src/components/atoms/icons/magnifying-glass.stories.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/components/atoms/icons/magnifying-glass.stories.tsx (limited to 'src/components/atoms/icons/magnifying-glass.stories.tsx') diff --git a/src/components/atoms/icons/magnifying-glass.stories.tsx b/src/components/atoms/icons/magnifying-glass.stories.tsx new file mode 100644 index 0000000..69c5b50 --- /dev/null +++ b/src/components/atoms/icons/magnifying-glass.stories.tsx @@ -0,0 +1,13 @@ +import { ComponentMeta, ComponentStory } from '@storybook/react'; +import MagnifyingGlassIcon from './magnifying-glass'; + +export default { + title: 'Atoms/Icons', + component: MagnifyingGlassIcon, +} as ComponentMeta; + +const Template: ComponentStory = (args) => ( + +); + +export const MagnifyingGlass = Template.bind({}); -- cgit v1.2.3