2026-04-23 20:52:43 +03:00
|
|
|
import type { Meta, StoryObj } from '@storybook/nextjs-vite';
|
|
|
|
|
import { UtilityBar } from './UtilityBar';
|
2026-04-19 09:19:17 +03:00
|
|
|
|
|
|
|
|
const meta: Meta<typeof UtilityBar> = {
|
|
|
|
|
title: 'Widgets/UtilityBar',
|
|
|
|
|
component: UtilityBar,
|
|
|
|
|
decorators: [
|
|
|
|
|
(Story) => (
|
|
|
|
|
<div className="relative h-24 bg-ochre-clay">
|
|
|
|
|
<Story />
|
|
|
|
|
</div>
|
|
|
|
|
),
|
|
|
|
|
],
|
2026-04-23 20:52:43 +03:00
|
|
|
};
|
2026-04-19 09:19:17 +03:00
|
|
|
|
2026-04-23 20:52:43 +03:00
|
|
|
export default meta;
|
2026-04-19 09:19:17 +03:00
|
|
|
|
2026-04-23 20:52:43 +03:00
|
|
|
type Story = StoryObj<typeof UtilityBar>;
|
2026-04-19 09:19:17 +03:00
|
|
|
|
2026-04-23 20:52:43 +03:00
|
|
|
export const Default: Story = {};
|