diff --git a/frontend/src/components/notebook/NotebookLabButton.tsx b/frontend/src/components/notebook/NotebookLabButton.tsx index 695ef98..dab5c35 100644 --- a/frontend/src/components/notebook/NotebookLabButton.tsx +++ b/frontend/src/components/notebook/NotebookLabButton.tsx @@ -1,9 +1,9 @@ import {faFlask} from "@fortawesome/free-solid-svg-icons" +import {Button} from "@steffo/bluelib-react" import * as React from "react" import {useAuthorizationContext} from "../../contexts/authorization" import {useNotebookContext} from "../../contexts/notebook" import {IconText} from "../elements/IconText" -import {NavigateButton} from "../elements/NavigateButton" export function NotebookLabButton(): JSX.Element | null { @@ -28,10 +28,10 @@ export function NotebookLabButton(): JSX.Element | null { } return ( - + ) } diff --git a/frontend/src/components/notebook/NotebookLegacyButton.tsx b/frontend/src/components/notebook/NotebookLegacyButton.tsx index 154cd17..efe3af5 100644 --- a/frontend/src/components/notebook/NotebookLegacyButton.tsx +++ b/frontend/src/components/notebook/NotebookLegacyButton.tsx @@ -1,9 +1,9 @@ import {faBook} from "@fortawesome/free-solid-svg-icons" +import {Button} from "@steffo/bluelib-react" import * as React from "react" import {useAuthorizationContext} from "../../contexts/authorization" import {useNotebookContext} from "../../contexts/notebook" import {IconText} from "../elements/IconText" -import {NavigateButton} from "../elements/NavigateButton" export function NotebookLegacyButton(): JSX.Element | null { @@ -28,10 +28,10 @@ export function NotebookLegacyButton(): JSX.Element | null { } return ( - + ) }