diff --git a/src/app/play/page.tsx b/src/app/play/page.tsx index 4f2a41a..a9c57b5 100644 --- a/src/app/play/page.tsx +++ b/src/app/play/page.tsx @@ -1917,7 +1917,6 @@ const FavoriteIcon = ({ filled }: { filled: boolean }) => { // 新增:去广告图标组件 const AdBlockIcon = ({ enabled }: { enabled: boolean }) => { - const color = enabled ? '#22c55e' : '#ffffff'; // Tailwind green-500 or white return ( { fontWeight='bold' textAnchor='middle' dominantBaseline='middle' - fill={color} + fill='#ffffff' > AD - {/* 斜线 */} - + {enabled && ( + + )} ); };