Files
owncast/web/components/common/OwncastLogo/OwncastLogo.stories.tsx
T
Gabe KangasandGitHub cc9286416c Update storybook to v9 (#4645)
* chore: Update storybook to v9

* Pin next-export-i18n + remove outdated mock library

* Replace old mocking library with MSW

* Resolve knip unused code warnings
2025-10-20 21:26:32 -07:00

25 lines
444 B
TypeScript

import { Meta } from '@storybook/nextjs';
import { OwncastLogo } from './OwncastLogo';
const meta = {
title: 'owncast/Components/Header Logo',
component: OwncastLogo,
parameters: {
chromatic: { diffThreshold: 0.8 },
},
} satisfies Meta<typeof OwncastLogo>;
export default meta;
export const Logo = {
args: {
url: '/logo',
},
};
export const DemoServer = {
args: {
url: 'https://watch.owncast.online/logo',
},
};