forked from NotNet/gluestick
39 lines
912 B
TypeScript
39 lines
912 B
TypeScript
import React from "react";
|
|
|
|
export default function UploadIcon() {
|
|
return (
|
|
<svg
|
|
viewBox="0 0 128 128"
|
|
version="1.1"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
>
|
|
<g
|
|
stroke="none"
|
|
strokeWidth="1"
|
|
fill="none"
|
|
fillRule="evenodd"
|
|
strokeLinecap="round"
|
|
>
|
|
<path
|
|
d="M16,64 L16,92 C16,103.045695 24.954305,112 36,112 L92,112 C103.045695,112 112,103.045695 112,92 L112,64 L112,64"
|
|
stroke="currentColor"
|
|
strokeWidth="13"
|
|
></path>
|
|
<line
|
|
x1="64"
|
|
y1="80"
|
|
x2="64"
|
|
y2="16"
|
|
stroke="currentColor"
|
|
strokeWidth="13"
|
|
></line>
|
|
<polyline
|
|
stroke="currentColor"
|
|
strokeWidth="13"
|
|
points="32 48 64 16 96 48"
|
|
></polyline>
|
|
</g>
|
|
</svg>
|
|
);
|
|
}
|