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) => ( );