storybook/docs/snippets/common/storybook-theme-example-variables.ts.mdx
2020-08-09 01:41:24 +01:00

11 lines
226 B
Plaintext

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