storybook/docs/snippets/common/storybook-theme-example-variables.ts.mdx
2022-03-29 10:47:45 +02:00

14 lines
272 B
Plaintext

```ts
// .storybook/YourTheme.js
import { create } from '@storybook/theming';
export default create({
base: 'light',
brandTitle: 'My custom storybook',
brandUrl: 'https://example.com',
brandImage: 'https://place-hold.it/350x150',
brandTarget: '_self',
});
```