Add files via upload
This commit is contained in:
parent
5e19e84c4b
commit
2d5c8a0872
1 changed files with 27 additions and 0 deletions
27
src/icons/share.tsx
Normal file
27
src/icons/share.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue