manager.ts 331 B

12345678910111213141516
  1. import {addons} from '@storybook/addons';
  2. import {create} from '@storybook/theming';
  3. const theme = create({
  4. base: 'light',
  5. brandTitle: 'Sentry UI System',
  6. brandUrl: '#',
  7. // To control appearance:
  8. // brandImage: 'http://url.of/some.svg',
  9. });
  10. addons.setConfig({
  11. showRoots: true,
  12. panelPosition: 'bottom',
  13. theme,
  14. });