Add files via upload

This commit is contained in:
Kosztyk 2026-01-05 21:19:34 +02:00 committed by GitHub
parent 5e19e84c4b
commit 2d5c8a0872
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

27
src/icons/share.tsx Normal file
View file

@ -0,0 +1,27 @@
// src/icons/share.tsx
export function ShareIcon() {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
strokeWidth="1.5"
stroke="currentColor"
class={`size-6`}
>
{/* Tray */}
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M3 14.25v4.5A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75v-4.5"
/>
{/* Arrow up (share) */}
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M12 3v11.25m0-11.25L7.5 7.5M12 3l4.5 4.5"
/>
</svg>
);
}