From c4e43aa422c219cbeeafa50001428a28fce55900 Mon Sep 17 00:00:00 2001 From: Pouria Delfanazari Date: Thu, 2 Oct 2025 15:43:31 -0700 Subject: [PATCH] docs: profile empty tab story --- .../profileEmptyTab/ProfileEmptyTab.stories.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/webapp/features/profile/components/profileEmptyTab/ProfileEmptyTab.stories.tsx diff --git a/src/webapp/features/profile/components/profileEmptyTab/ProfileEmptyTab.stories.tsx b/src/webapp/features/profile/components/profileEmptyTab/ProfileEmptyTab.stories.tsx new file mode 100644 index 00000000..62ad4430 --- /dev/null +++ b/src/webapp/features/profile/components/profileEmptyTab/ProfileEmptyTab.stories.tsx @@ -0,0 +1,17 @@ +import type { Meta, StoryObj } from '@storybook/nextjs-vite'; +import ProfileEmptyTab from './ProfileEmptyTab'; +import { IoMdAlert } from 'react-icons/io'; + +const meta = { + component: ProfileEmptyTab, +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Primary: Story = { + args: { + message: 'A message that indicates this tab on profile has no content', + icon: IoMdAlert, + }, +}; -- 2.51.2