import { Meta, StoryObj } from '@storybook/react-webpack5'; import CriticalCommsBanner from '.'; export default { component: CriticalCommsBanner, title: 'Prompts/CriticalCommsBanner', } satisfies Meta; type Story = StoryObj; export const Basic = { args: { title: 'Your account is overdrawn', subtitle: 'Add money within the next 30 days', action: { label: 'Take action', href: 'https://wise.com' }, }, }; export const Sentiments: Story = { render: (args) => ( <> ), args: { subtitle: 'Add money within the next 30 days', action: { label: 'Take action', href: 'https://wise.com' }, className: 'm-b-1', }, };