This commit is contained in:
Norbert de Langen 2020-05-20 17:06:53 +02:00
parent 7f430b1122
commit 07331c9b0f
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
2 changed files with 1 additions and 16 deletions

View File

@ -1,5 +1,4 @@
import { location, fetch } from 'global';
import { logger } from '@storybook/client-logger';
import dedent from 'ts-dedent';
import {
transformStoriesRawToStoriesHash,

View File

@ -1,11 +1,4 @@
import React, {
FunctionComponent,
useMemo,
Fragment,
ComponentProps,
useCallback,
forwardRef,
} from 'react';
import React, { FunctionComponent, useMemo, ComponentProps, useCallback, forwardRef } from 'react';
import { Icons, WithTooltip, Spaced, TooltipLinkList } from '@storybook/components';
import { styled } from '@storybook/theming';
@ -35,13 +28,6 @@ const IndicatorPlacement = styled.aside(
({ theme }) => ({ color: theme.color.mediumdark })
);
const Hr = styled.hr(({ theme }) => ({
border: '0 none',
height: 0,
marginBottom: 0,
borderTop: `1px solid ${theme.color.mediumlight}`,
}));
const IndicatorIcon: FunctionComponent<IndicatorIconProps> = ({ type }) => {
let icon: ComponentProps<typeof Icons>['icon'];