fix(web): redesign image editor icon for better clarity

Replace abstract curve-and-dots icon with a recognizable photo frame
and pencil design that reads clearly as an image editor at all sizes.
This commit is contained in:
SnapOtter
2026-05-13 18:18:20 +08:00
parent c6a5d3f33e
commit beb94b698c
@@ -12,10 +12,10 @@ export function ImageEditIcon(props: SVGProps<SVGSVGElement>) {
strokeLinejoin="round"
{...props}
>
<rect x="3" y="3" width="18" height="18" rx="2" />
<path d="M7 17C7 12 12 7 17 7" />
<circle cx="7" cy="17" r="1.5" />
<circle cx="17" cy="7" r="1.5" />
<path d="M12 20H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v7" />
<circle cx="8.5" cy="8.5" r="1.5" />
<path d="m3 20 4.5-4.5L10 18" />
<path d="m18.4 12.6-5.9 5.9-.5 2.5 2.5-.5 5.9-5.9a1.5 1.5 0 0 0-2.1-2.1z" />
</svg>
);
}