storybook/docs/snippets/common/storybook-theme-example-variables.ts.mdx
2020-11-18 18:05:02 +00:00

12 lines
253 B
Plaintext

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