From 21b2ee54034c621867100b0e0bbe6f433c8dfb61 Mon Sep 17 00:00:00 2001 From: Dylan Jeffers Date: Tue, 14 Nov 2023 12:25:59 -0800 Subject: [PATCH] Fix harmony docs sidebar-item --- .../src/storybook/components/SidebarItem.tsx | 33 ++++++++++--------- 1 file changed, 18 insertions(+), 15 deletions(-) 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} - - +
+ ) }