mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-30 02:23:47 +00:00
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.
This commit is contained in:
@@ -73,6 +73,17 @@ import {
|
|||||||
PiVideoCamera,
|
PiVideoCamera,
|
||||||
PiXCircle,
|
PiXCircle,
|
||||||
PiX,
|
PiX,
|
||||||
|
PiKey,
|
||||||
|
PiTray,
|
||||||
|
PiExport,
|
||||||
|
PiWarningCircle,
|
||||||
|
PiCalendarBlank,
|
||||||
|
PiCalendarStar,
|
||||||
|
PiChartPie,
|
||||||
|
PiChartDonut,
|
||||||
|
PiCpu,
|
||||||
|
PiMemory,
|
||||||
|
PiPulse,
|
||||||
} from 'react-icons/pi';
|
} from 'react-icons/pi';
|
||||||
|
|
||||||
import { cn } from '@/lib/utils';
|
import { cn } from '@/lib/utils';
|
||||||
@@ -120,6 +131,50 @@ export const BanIcon = ({ className }: IconProps) => (
|
|||||||
<PiProhibit className={cn('h-5 w-5', className)} />
|
<PiProhibit className={cn('h-5 w-5', className)} />
|
||||||
);
|
);
|
||||||
|
|
||||||
|
export const KeyIcon = ({ className }: IconProps) => <PiKey className={cn('h-5 w-5', className)} />;
|
||||||
|
|
||||||
|
export const InboxIcon = ({ className }: IconProps) => (
|
||||||
|
<PiTray className={cn('h-5 w-5', className)} />
|
||||||
|
);
|
||||||
|
|
||||||
|
export const ExportIcon = ({ className }: IconProps) => (
|
||||||
|
<PiExport className={cn('h-5 w-5', className)} />
|
||||||
|
);
|
||||||
|
|
||||||
|
export const WarningCircleIcon = ({ className }: IconProps) => (
|
||||||
|
<PiWarningCircle className={cn('h-5 w-5', className)} />
|
||||||
|
);
|
||||||
|
|
||||||
|
export const HeartbeatIcon = ({ className }: IconProps) => (
|
||||||
|
<PiHeartbeat className={cn('h-5 w-5', className)} />
|
||||||
|
);
|
||||||
|
|
||||||
|
export const CalendarBlankIcon = ({ className }: IconProps) => (
|
||||||
|
<PiCalendarBlank className={cn('h-5 w-5', className)} />
|
||||||
|
);
|
||||||
|
|
||||||
|
export const CalendarStarIcon = ({ className }: IconProps) => (
|
||||||
|
<PiCalendarStar className={cn('h-5 w-5', className)} />
|
||||||
|
);
|
||||||
|
|
||||||
|
export const ChartPieIcon = ({ className }: IconProps) => (
|
||||||
|
<PiChartPie className={cn('h-5 w-5', className)} />
|
||||||
|
);
|
||||||
|
|
||||||
|
export const ChartDonutIcon = ({ className }: IconProps) => (
|
||||||
|
<PiChartDonut className={cn('h-5 w-5', className)} />
|
||||||
|
);
|
||||||
|
|
||||||
|
export const CpuIcon = ({ className }: IconProps) => <PiCpu className={cn('h-5 w-5', className)} />;
|
||||||
|
|
||||||
|
export const MemoryIcon = ({ className }: IconProps) => (
|
||||||
|
<PiMemory className={cn('h-5 w-5', className)} />
|
||||||
|
);
|
||||||
|
|
||||||
|
export const PulseIcon = ({ className }: IconProps) => (
|
||||||
|
<PiPulse className={cn('h-5 w-5', className)} />
|
||||||
|
);
|
||||||
|
|
||||||
export const BanknotesIcon = ({ className }: IconProps) => (
|
export const BanknotesIcon = ({ className }: IconProps) => (
|
||||||
<PiMoney className={cn('h-5 w-5', className)} />
|
<PiMoney className={cn('h-5 w-5', className)} />
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user