feat: add torbox icon

This commit is contained in:
Zamitto
2025-02-01 17:53:08 -03:00
parent ebc70ce28f
commit bdf3a98c1a
4 changed files with 10 additions and 18 deletions

View File

@@ -5,7 +5,7 @@ import { useTranslation } from "react-i18next";
import { SettingsRealDebrid } from "./settings-real-debrid";
import { SettingsGeneral } from "./settings-general";
import { SettingsBehavior } from "./settings-behavior";
import torBoxLogo from "@renderer/assets/icons/torbox.webp";
import { SettingsDownloadSources } from "./settings-download-sources";
import {
SettingsContextConsumer,
@@ -74,6 +74,13 @@ export default function Settings() {
}
onClick={() => setCurrentCategoryIndex(index)}
>
{index === 3 && (
<img
src={torBoxLogo}
alt="TorBox"
style={{ width: 13 }}
/>
)}
{category}
</Button>
))}