diff --git a/src/components/Icons/Ollama.tsx b/src/components/Icons/Ollama.tsx new file mode 100644 index 0000000..e0e0dab --- /dev/null +++ b/src/components/Icons/Ollama.tsx @@ -0,0 +1,20 @@ +import React from "react" + +export const OllamaIcon = React.forwardRef< + SVGSVGElement, + React.SVGProps +>((props, ref) => { + return ( + + + + + + ) +}) diff --git a/src/components/Layouts/SettingsOptionLayout.tsx b/src/components/Layouts/SettingsOptionLayout.tsx index 3b50161..de68569 100644 --- a/src/components/Layouts/SettingsOptionLayout.tsx +++ b/src/components/Layouts/SettingsOptionLayout.tsx @@ -1,12 +1,12 @@ import { Book, BrainCircuit, - CircuitBoardIcon, Orbit, Share } from "lucide-react" import { useTranslation } from "react-i18next" import { Link, useLocation } from "react-router-dom" +import { OllamaIcon } from "../Icons/Ollama" function classNames(...classes: string[]) { return classes.filter(Boolean).join(" ") @@ -64,7 +64,7 @@ export const SettingsLayout = ({ children }: { children: React.ReactNode }) => {