优化图标

This commit is contained in:
eafonyang
2026-07-03 15:58:51 +08:00
parent 94224421a3
commit 9ed1b6f526
+4 -2
View File
@@ -41,6 +41,8 @@ import {
SquareArrowRightEnter, SquareArrowRightEnter,
SquareArrowRightExit, SquareArrowRightExit,
FileMusic, FileMusic,
Minus,
Plus,
} from "lucide-react"; } from "lucide-react";
import { useLocation } from "wouter"; import { useLocation } from "wouter";
import { useRef, useState, useEffect, useCallback, useMemo } from "react"; import { useRef, useState, useEffect, useCallback, useMemo } from "react";
@@ -718,7 +720,7 @@ export default function Home() {
}); });
}} }}
> >
<span className="text-[20px] leading-none">-</span> <span className="text-[20px] leading-none"><Minus size={20} className="text-[#00FFF6]" /></span>
</button> </button>
<span className="text-[22px] font-bold tracking-tight" style={{ color: "#00FFF6" }}> <span className="text-[22px] font-bold tracking-tight" style={{ color: "#00FFF6" }}>
@@ -743,7 +745,7 @@ export default function Home() {
}); });
}} }}
> >
<span className="text-[20px] leading-none">+</span> <span className="text-[20px] leading-none"><Plus size={20} className="text-[#00FFF6]" /></span>
</button> </button>
</div> </div>