4f078e1ee4
* Migrate web action-buttons directory to CSF3 notation * Migrate web chat directory to CSF3 notation * Migrate web common directory to CSF3 notation * Migrate web layout directory to CSF3 notation * Migrate web modals directory to CSF3 notation * Migrate web ui directory to CSF3 notation * Migrate web video directory to CSF3 notation * Migrate web stories directory to CSF3 notation
25 lines
443 B
TypeScript
25 lines
443 B
TypeScript
import { Meta } from '@storybook/react';
|
|
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',
|
|
},
|
|
};
|