| 1 |
export const countIcon = ( |
| 2 |
<svg |
| 3 |
viewBox="-2.4 -2.4 28.80 28.80" |
| 4 |
fill="none" |
| 5 |
xmlns="http://www.w3.org/2000/svg" |
| 6 |
stroke="#0a0a0a" |
| 7 |
> |
| 8 |
<g id="SVGRepo_bgCarrier" strokeWidth={ 0 }> |
| 9 |
<rect |
| 10 |
x={ -2.4 } |
| 11 |
y={ -2.4 } |
| 12 |
width={ 28.8 } |
| 13 |
height={ 28.8 } |
| 14 |
rx={ 0 } |
| 15 |
fill="#FFBD59" |
| 16 |
strokeWidth={ 0 } |
| 17 |
/> |
| 18 |
</g> |
| 19 |
<g |
| 20 |
id="SVGRepo_tracerCarrier" |
| 21 |
strokeLinecap="round" |
| 22 |
strokeLinejoin="round" |
| 23 |
/> |
| 24 |
<g id="SVGRepo_iconCarrier"> |
| 25 |
<path |
| 26 |
d="M13 21L17 3" |
| 27 |
stroke="#0a0a0a" |
| 28 |
strokeWidth={ 2 } |
| 29 |
strokeLinecap="round" |
| 30 |
strokeLinejoin="round" |
| 31 |
/> |
| 32 |
<path |
| 33 |
d="M7 21L11 3" |
| 34 |
stroke="#0a0a0a" |
| 35 |
strokeWidth={ 2 } |
| 36 |
strokeLinecap="round" |
| 37 |
strokeLinejoin="round" |
| 38 |
/> |
| 39 |
<path |
| 40 |
d="M20 9L4 9" |
| 41 |
stroke="#0a0a0a" |
| 42 |
strokeWidth={ 2 } |
| 43 |
strokeLinecap="round" |
| 44 |
strokeLinejoin="round" |
| 45 |
/> |
| 46 |
<path |
| 47 |
d="M4 15L20 15" |
| 48 |
stroke="#0a0a0a" |
| 49 |
strokeWidth={ 2 } |
| 50 |
strokeLinecap="round" |
| 51 |
strokeLinejoin="round" |
| 52 |
/> |
| 53 |
</g> |
| 54 |
</svg> |
| 55 |
); |
| 56 |
|
| 57 |
export const LinkIcon = ` |
| 58 |
<svg width="16" height="16" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> |
| 59 |
<path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" fill="currentColor"/> |
| 60 |
</svg> |
| 61 |
`; |
| 62 |
|
| 63 |
export const UnlinkIcon = ` |
| 64 |
<svg width="16" height="16" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> |
| 65 |
<path d="M17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.43-.98 2.63-2.31 2.98l1.46 1.46C20.88 15.61 22 13.95 22 12c0-2.76-2.24-5-5-5zm-1 4h-2.19l2 2H16v-2zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4L20 19.74 3.27 3 2 4.27z" fill="currentColor"/> |
| 66 |
</svg> |
| 67 |
`; |
| 68 |
|