blob: a696ca2514903c54ca5e7db5daf5a9478e0921e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
import React from "react";
function LinkArrow({
classname,
stroke,
}: {
classname?: string;
stroke?: string;
}) {
return (
<svg
className={classname}
stroke={stroke}
width="24px"
height="24px"
viewBox="-2.4 -2.4 28.80 28.80"
fill="none"
xmlns="http://www.w3.org/2000/svg"
transform="matrix(1, 0, 0, 1, 0, 0)rotate(0)"
>
<g id="SVGRepo_bgCarrier" strokeWidth="0"></g>
<g
id="SVGRepo_tracerCarrier"
strokeLinecap="round"
strokeLinejoin="round"
></g>
<g id="SVGRepo_iconCarrier">
{" "}
<path
d="M7 17L17 7M17 7H8M17 7V16"
stroke="currentColor"
strokeWidth="0.792"
strokeLinecap="round"
strokeLinejoin="round"
></path>{" "}
</g>
</svg>
);
}
export default LinkArrow;
|