|
|
@@ -1,6 +1,6 @@
|
|
|
import React from 'react';
|
|
|
import { Card } from 'antd';
|
|
|
-import { TrendingUpOutlined, TrendingDownOutlined } from '@ant-design/icons';
|
|
|
+import { ArrowUpOutlined, ArrowDownOutlined } from '@ant-design/icons';
|
|
|
import type { ReactNode } from 'react';
|
|
|
|
|
|
interface TechStatCardProps {
|
|
|
@@ -24,7 +24,7 @@ export const TechStatCard: React.FC<TechStatCardProps> = ({
|
|
|
}) => {
|
|
|
const isPositive = trend !== undefined && trend > 0;
|
|
|
const trendColor = isPositive ? 'text-green-400' : 'text-red-400';
|
|
|
- const TrendIcon = isPositive ? TrendingUpOutlined : TrendingDownOutlined;
|
|
|
+ const TrendIcon = isPositive ? ArrowUpOutlined : ArrowDownOutlined;
|
|
|
|
|
|
return (
|
|
|
<div className="relative group">
|