diff --git a/frontend/src/layout/navigation/TopBar/NotebookButton.tsx b/frontend/src/layout/navigation/TopBar/NotebookButton.tsx deleted file mode 100644 index f9b444e887a29..0000000000000 --- a/frontend/src/layout/navigation/TopBar/NotebookButton.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import { IconNotebook } from '@posthog/icons' -import { LemonButton } from '@posthog/lemon-ui' -import { useActions } from 'kea' -import { notebookPanelLogic } from 'scenes/notebooks/NotebookPanel/notebookPanelLogic' - -export function NotebookButton(): JSX.Element { - const { toggleVisibility } = useActions(notebookPanelLogic) - - return ( - } - onClick={toggleVisibility} - status="primary-alt" - size="small" - type="secondary" - > - Notebooks - - ) -}