import React from 'react'; import type { Meta, StoryObj } from '@storybook/react'; import DialogBanner from './DialogBanner'; const meta = { title: '@quickblox-react-ui-kit/Presentation/ui-components/DialogBanner', component: DialogBanner, tags: ['autodocs'], parameters: { layout: 'centered', }, args: { text: '' }, argTypes: { text: { table: { defaultValue: { summary: '', }, }, description: 'Text content', }, onClick: { description: 'click function', table: { type: { summary: 'function' }, }, }, }, } satisfies Meta; export default meta; type Story = StoryObj; export const DialogBannerDefault: Story = { name: 'DialogBanner Default', args: { text: '3 new messages', }, };