From 872f73157faff53dc75d6689c1ea75d5e4150d6f Mon Sep 17 00:00:00 2001 From: c0mrade Date: Mon, 1 Jun 2026 13:08:06 +0300 Subject: [PATCH] feat(icons): add node/gift glyphs to the central barrel Add Key, Inbox, Export, WarningCircle, Heartbeat, CalendarBlank, CalendarStar, ChartPie, ChartDonut, Cpu, Memory, Pulse as Phosphor Regular wrappers so feature pages stop hand-writing SVGs or importing react-icons/pi directly. --- src/components/icons/extended-icons.tsx | 55 +++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/src/components/icons/extended-icons.tsx b/src/components/icons/extended-icons.tsx index c6424db..104eae1 100644 --- a/src/components/icons/extended-icons.tsx +++ b/src/components/icons/extended-icons.tsx @@ -73,6 +73,17 @@ import { PiVideoCamera, PiXCircle, PiX, + PiKey, + PiTray, + PiExport, + PiWarningCircle, + PiCalendarBlank, + PiCalendarStar, + PiChartPie, + PiChartDonut, + PiCpu, + PiMemory, + PiPulse, } from 'react-icons/pi'; import { cn } from '@/lib/utils'; @@ -120,6 +131,50 @@ export const BanIcon = ({ className }: IconProps) => ( ); +export const KeyIcon = ({ className }: IconProps) => ; + +export const InboxIcon = ({ className }: IconProps) => ( + +); + +export const ExportIcon = ({ className }: IconProps) => ( + +); + +export const WarningCircleIcon = ({ className }: IconProps) => ( + +); + +export const HeartbeatIcon = ({ className }: IconProps) => ( + +); + +export const CalendarBlankIcon = ({ className }: IconProps) => ( + +); + +export const CalendarStarIcon = ({ className }: IconProps) => ( + +); + +export const ChartPieIcon = ({ className }: IconProps) => ( + +); + +export const ChartDonutIcon = ({ className }: IconProps) => ( + +); + +export const CpuIcon = ({ className }: IconProps) => ; + +export const MemoryIcon = ({ className }: IconProps) => ( + +); + +export const PulseIcon = ({ className }: IconProps) => ( + +); + export const BanknotesIcon = ({ className }: IconProps) => ( );