storybook/docs/snippets/common/storybook-theme-example-variables.ts.mdx
2021-01-25 14:06:59 -07:00

12 lines
246 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://placehold.it/350x150',
});
```