mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
27 lines
727 B
Plaintext
27 lines
727 B
Plaintext
```js
|
|
// addon-toolbar/register.js
|
|
|
|
import React from "react";
|
|
|
|
import addons, { types } from "@storybook/addons";
|
|
|
|
import { Icons, IconButton } from '@storybook/components';
|
|
|
|
addons.register("my/toolbar", () => {
|
|
addons.add("my-toolbar-addon/toolbar", {
|
|
title: "Example Storybook toolbar",
|
|
//👇 Sets the type of UI element in Storybook
|
|
type: types.TOOL,
|
|
//👇 Shows the Toolbar UI element if either the Canvas or Docs tab is active
|
|
match: ({ viewMode }) => !!(viewMode && viewMode.match(/^(story|docs)$/)),
|
|
render: ({ active }) => (
|
|
<IconButton
|
|
active={active}
|
|
title="Show a Storybook toolbar"
|
|
>
|
|
<Icons icon="outline" />
|
|
</IconButton>
|
|
),
|
|
});
|
|
});
|
|
``` |