storybook/docs/snippets/common/storybook-theme-example-variables.ts.mdx
2021-04-17 14:25:08 +02:00

13 lines
248 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',
});
```