// 常用图标组件 - 转换为React组件以减少HTTP请求 export interface IconProps { width?: number; height?: number; className?: string; color?: string; } // 导航图标 export const IconLending = ({ width = 20, height = 20, className = "", color = "currentColor" }: IconProps) => ( ); export const IconAlp = ({ width = 20, height = 20, className = "", color = "currentColor" }: IconProps) => ( ); export const IconSwap = ({ width = 20, height = 20, className = "", color = "currentColor" }: IconProps) => ( ); export const IconTransparency = ({ width = 20, height = 20, className = "", color = "currentColor" }: IconProps) => ( ); export const IconEcosystem = ({ width = 20, height = 20, className = "", color = "currentColor" }: IconProps) => ( ); export const IconPoints = ({ width = 20, height = 20, className = "", color = "currentColor" }: IconProps) => ( ); // 操作图标 export const IconCopy = ({ width = 16, height = 16, className = "", color = "currentColor" }: IconProps) => ( ); export const IconWallet = ({ width = 20, height = 20, className = "", color = "currentColor" }: IconProps) => ( ); export const IconNotification = ({ width = 20, height = 20, className = "", color = "currentColor" }: IconProps) => ( ); export const IconRefresh = ({ width = 16, height = 16, className = "", color = "currentColor" }: IconProps) => ( ); export const IconArrowRight = ({ width = 16, height = 16, className = "", color = "currentColor" }: IconProps) => ( ); // UI图标 export const IconChevronLeft = ({ width = 10, height = 10, className = "", color = "currentColor" }: IconProps) => ( ); export const IconChevronRight = ({ width = 10, height = 10, className = "", color = "currentColor" }: IconProps) => ( ); export const IconChart = ({ width = 16, height = 16, className = "", color = "currentColor" }: IconProps) => ( ); export const IconClose = ({ width = 20, height = 20, className = "", color = "currentColor" }: IconProps) => ( ); // 用户图标 export const IconWhale = ({ width = 24, height = 24, className = "", color = "currentColor" }: IconProps) => ( ); export const IconTrader = ({ width = 24, height = 24, className = "", color = "currentColor" }: IconProps) => ( ); export const IconUser = ({ width = 24, height = 24, className = "", color = "currentColor" }: IconProps) => ( );