storybook/docs/snippets/common/storybook-theme-example-variables.ts.mdx
2021-05-06 21:05:56 +01:00

12 lines
247 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',
});
```