diff --git a/packages/harmony/src/storybook/components/SidebarItem.tsx b/packages/harmony/src/storybook/components/SidebarItem.tsx index 96ec274ffff..b1bbc7fa537 100644 --- a/packages/harmony/src/storybook/components/SidebarItem.tsx +++ b/packages/harmony/src/storybook/components/SidebarItem.tsx @@ -5,9 +5,6 @@ import { jsx } from '@emotion/react' import { useTheme } from '@storybook/theming' -import { Box } from '../../components/layout/Box' -import { Flex } from '../../components/layout/Flex' - type SidebarItemProps = { name: string status: string @@ -22,19 +19,25 @@ export const SidebarItem = (props: SidebarItemProps) => { : theme.barSelectedColor return ( - - {name} - + {name} +
{status} - - +
+ ) }