···11+import type { Meta, StoryObj } from '@storybook/nextjs-vite';
22+import ProfileEmptyTab from './ProfileEmptyTab';
33+import { IoMdAlert } from 'react-icons/io';
44+55+const meta = {
66+ component: ProfileEmptyTab,
77+} satisfies Meta<typeof ProfileEmptyTab>;
88+99+export default meta;
1010+type Story = StoryObj<typeof meta>;
1111+1212+export const Primary: Story = {
1313+ args: {
1414+ message: 'A message that indicates this tab on profile has no content',
1515+ icon: IoMdAlert,
1616+ },
1717+};