storybook/docs/_snippets/storybook-theme-example-variables.md
2024-11-17 16:46:37 +00:00

12 lines
338 B
Markdown

```js filename=".storybook/YourTheme.js" renderer="common" language="js"
import { create } from '@storybook/theming';
export default create({
base: 'light',
brandTitle: 'My custom Storybook',
brandUrl: 'https://example.com',
brandImage: 'https://storybook.js.org/images/placeholders/350x150.png',
brandTarget: '_self',
});
```