From 8c207fc8600eb33acea479ff2ba3ebeb2783eb38 Mon Sep 17 00:00:00 2001 From: keitakn Date: Mon, 23 Sep 2024 17:13:04 +0900 Subject: [PATCH] =?UTF-8?q?:sparkles:=20#324=20GlobeIcon=20=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../_components/icons/GlobeIcon.stories.tsx | 12 +++++++++++ src/app/_components/icons/GlobeIcon.tsx | 21 +++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 src/app/_components/icons/GlobeIcon.stories.tsx create mode 100644 src/app/_components/icons/GlobeIcon.tsx diff --git a/src/app/_components/icons/GlobeIcon.stories.tsx b/src/app/_components/icons/GlobeIcon.stories.tsx new file mode 100644 index 0000000..c68b388 --- /dev/null +++ b/src/app/_components/icons/GlobeIcon.stories.tsx @@ -0,0 +1,12 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { GlobeIcon } from './GlobeIcon'; + +const meta = { + component: GlobeIcon, +} satisfies Meta; + +export default meta; + +type Story = StoryObj; + +export const Default: Story = {}; diff --git a/src/app/_components/icons/GlobeIcon.tsx b/src/app/_components/icons/GlobeIcon.tsx new file mode 100644 index 0000000..036a7b6 --- /dev/null +++ b/src/app/_components/icons/GlobeIcon.tsx @@ -0,0 +1,21 @@ +import type { JSX } from 'react'; + +export const GlobeIcon = (): JSX.Element => { + return ( + + + + ); +};