import React from 'react'; import { addons } from '@storybook/addons'; import { themes, styled } from '@storybook/theming'; import { Icons } from '@storybook/components'; import addHeadWarning from './head-warning'; addHeadWarning('manager-head-not-loaded', 'Manager head not loaded'); const PrefixIcon = styled(Icons)(({ theme }) => ({ marginRight: 8, fontSize: 'inherit', height: '1em', width: '1em', display: 'inline', alignSelf: 'center', })); addons.setConfig({ theme: themes.light, // { base: 'dark', brandTitle: 'Storybook!' }, previewTabs: { canvas: null, 'storybook/docs/panel': null, 'storybookjs/notes/panel': { title: 'Annotations', hidden: true }, graphiql: { hidden: true, }, }, sidebar: { collapsedRoots: ['other'], renderLabel: ({ id, name }) => { const map = { addons: ( <> {name} ), 'addons-a11y': ( <> {name} ), 'addons-a11y-basebutton': ( <> {name} ), 'addons-a11y-basebutton--default': ( <> {name} ), }; return map[id]; }, }, });