feat: 本次提交更新内容如下

存一下
This commit is contained in:
笔记本里的永平
2025-07-16 10:22:12 +08:00
parent 29fbdd5a3e
commit 1bb34b4932
3 changed files with 539 additions and 247 deletions

View File

@@ -0,0 +1,22 @@
import React from "react";
export function EyeIcon(props: React.SVGProps<SVGSVGElement>) {
return (
<svg
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
height="24"
width="24"
{...props}
>
<path d="M1 12s4-7 11-7 11 7 11 7-4 7-11 7-11-7-11-7z" />
<circle cx="12" cy="12" r="3" />
</svg>
);
}
export default EyeIcon;