| 1 |
export const postIcon = ( |
| 2 |
<svg |
| 3 |
fill="#0a0a0a" |
| 4 |
viewBox="-1.6 -1.6 19.20 19.20" |
| 5 |
xmlns="http://www.w3.org/2000/svg" |
| 6 |
> |
| 7 |
<g id="SVGRepo_bgCarrier" strokeWidth={ 0 }> |
| 8 |
<rect |
| 9 |
x={ -1.6 } |
| 10 |
y={ -1.6 } |
| 11 |
width={ 19.2 } |
| 12 |
height={ 19.2 } |
| 13 |
rx={ 0 } |
| 14 |
fill="#FFBD59" |
| 15 |
strokeWidth={ 0 } |
| 16 |
/> |
| 17 |
</g> |
| 18 |
<g |
| 19 |
id="SVGRepo_tracerCarrier" |
| 20 |
strokeLinecap="round" |
| 21 |
strokeLinejoin="round" |
| 22 |
/> |
| 23 |
<g id="SVGRepo_iconCarrier"> |
| 24 |
<path d="M3.59 3.03h12.2v1.26H3.59zm0 4.29h12.2v1.26H3.59zm0 4.35h12.2v1.26H3.59zM.99 4.79h.49V2.52H.6v.45h.39v1.82zm.87 3.88H.91l.14-.11.3-.24c.35-.28.49-.5.49-.79A.74.74 0 0 0 1 6.8a.77.77 0 0 0-.81.84h.52A.34.34 0 0 1 1 7.25a.31.31 0 0 1 .31.31.6.6 0 0 1-.22.44l-.87.75v.39h1.64zm-.36 3.56a.52.52 0 0 0 .28-.48.67.67 0 0 0-.78-.62.71.71 0 0 0-.77.75h.5a.3.3 0 0 1 .27-.32.26.26 0 1 1 0 .51H.91v.38H1c.23 0 .37.11.37.29a.29.29 0 0 1-.33.29.35.35 0 0 1-.36-.35H.21a.76.76 0 0 0 .83.8.74.74 0 0 0 .83-.72.53.53 0 0 0-.37-.53z" /> |
| 25 |
</g> |
| 26 |
</svg> |
| 27 |
); |
| 28 |
|
| 29 |
export const LinkIcon = ` |
| 30 |
<svg width="16" height="16" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> |
| 31 |
<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"/> |
| 32 |
</svg> |
| 33 |
`; |
| 34 |
|
| 35 |
export const UnlinkIcon = ` |
| 36 |
<svg width="16" height="16" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> |
| 37 |
<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"/> |
| 38 |
</svg> |
| 39 |
`; |
| 40 |
|