import styled from '@emotion/styled'; import { Meta, StoryFn, StoryObj } from '@storybook/react'; import React from 'react'; import { Button } from '../Button'; import { Dialog } from '../Dialog'; import { Typography } from '../Typography'; import { Notifications, showCustomNotification, showNotification } from '.'; export default { args: {}, component: Notifications, title: 'Components/Notifications', } as Meta; const ButtonBox = styled('div')` display: flex; flex-direction: column; gap: 8px; `; const NotificationContentBox = styled('div')` display: flex; flex-direction: column; gap: 8px; background: ${({ theme }) => theme.colors.black700}; padding: 8px; `; const Template: StoryFn = (args) => { return ( ), }); }} > Show Custom Notification ); }; export const Default: StoryObj = { args: {}, render: () => ( <>