manager.ts 366 B

1234567891011121314151617
  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. fontBase: '"Rubik", sans-serif',
  8. // To control appearance:
  9. // brandImage: 'http://url.of/some.svg',
  10. });
  11. addons.setConfig({
  12. showRoots: true,
  13. panelPosition: 'bottom',
  14. theme,
  15. });