fix(cabinet-icons): correct two mismatched glyphs from the svg migration

A personal glyph-by-glyph re-review of the migration (the "steering wheel"
guard) found two wrong matches:
- MaintenanceScreen: a wrench/maintenance svg had been mapped to AdjustmentsIcon
  (sliders) → use a proper WrenchIcon (PiWrench).
- InstallationGuide tutorial button: an open-book svg had been mapped to
  DocumentIcon (file) → use BookOpenIcon (PiBookOpen).

Add WrenchIcon and BookOpenIcon to the central barrel. All other replacements
were verified correct (paper-plane→Send, server→HardDrives, warning-triangle→
Warning, etc.).
This commit is contained in:
c0mrade
2026-05-31 23:43:32 +03:00
parent b5088c70a1
commit 9aae399ce8
3 changed files with 14 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ import { useTheme } from '@/hooks/useTheme';
import { CardsBlock, TimelineBlock, AccordionBlock, MinimalBlock, BlockButtons } from './blocks';
import type { BlockRendererProps } from './blocks';
import TvQuickConnect from './TvQuickConnect';
import { BackIcon, ChevronIcon, DocumentIcon } from '@/components/icons';
import { BackIcon, BookOpenIcon, ChevronIcon } from '@/components/icons';
const platformOrder = ['ios', 'android', 'windows', 'macos', 'linux', 'androidTV', 'appleTV'];
@@ -307,7 +307,7 @@ export default function InstallationGuide({
rel="noopener noreferrer"
className="btn-secondary w-full justify-center"
>
<DocumentIcon className="h-5 w-5" />
<BookOpenIcon className="h-5 w-5" />
{getBaseTranslation('tutorial', 'subscription.connection.tutorial')}
</a>
)}