diff --git a/src/components/Layout/Sidebar/SidebarButton.tsx b/src/components/Layout/Sidebar/SidebarButton.tsx deleted file mode 100644 index dc1f29a8d46..00000000000 --- a/src/components/Layout/Sidebar/SidebarButton.tsx +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Copyright (c) Facebook, Inc. and its affiliates. - */ - -import * as React from 'react'; -import cn from 'classnames'; -import {IconNavArrow} from 'components/Icon/IconNavArrow'; - -interface SidebarButtonProps { - title: string; - heading: boolean; - level: number; - onClick: (event: React.MouseEvent) => void; - isExpanded?: boolean; - isBreadcrumb?: boolean; -} - -export function SidebarButton({ - title, - heading, - level, - onClick, - isExpanded, - isBreadcrumb, -}: SidebarButtonProps) { - return ( -
1, - })}> - -
- ); -} diff --git a/src/components/Layout/Sidebar/index.tsx b/src/components/Layout/Sidebar/index.tsx index d0e29154756..ec5c6c931cd 100644 --- a/src/components/Layout/Sidebar/index.tsx +++ b/src/components/Layout/Sidebar/index.tsx @@ -2,6 +2,5 @@ * Copyright (c) Facebook, Inc. and its affiliates. */ -export {SidebarButton} from './SidebarButton'; export {SidebarLink} from './SidebarLink'; export {SidebarRouteTree} from './SidebarRouteTree';