storybook/docs/snippets/common/storybook-theme-example-variables.ts.mdx
2020-08-18 17:30:56 +01:00

12 lines
242 B
Plaintext

```ts
// 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',
});
```