| 1 |
import React from 'react'; |
| 2 |
|
| 3 |
function Upload() { |
| 4 |
return ( |
| 5 |
<svg |
| 6 |
xmlns='http://www.w3.org/2000/svg' |
| 7 |
width='51' |
| 8 |
height='52' |
| 9 |
fill='none' |
| 10 |
viewBox='0 0 51 52'> |
| 11 |
<rect |
| 12 |
width='44' |
| 13 |
height='44' |
| 14 |
x='3.5' |
| 15 |
y='4.142' |
| 16 |
fill='#F2F4F7' |
| 17 |
rx='22'></rect> |
| 18 |
<g clipPath='url(#clip0_397_310)'> |
| 19 |
<path |
| 20 |
fill='#475467' |
| 21 |
d='M14.5 28.642a6.495 6.495 0 013.064-5.52 8.001 8.001 0 0115.872 0 6.5 6.5 0 01-2.936 12l-10 .02c-3.356-.274-6-3.078-6-6.5zm15.848 4.487a4.5 4.5 0 002.03-8.31l-.807-.502-.12-.942a6.001 6.001 0 00-11.903 0l-.12.942-.805.503a4.5 4.5 0 002.029 8.309l.173.013h9.35l.173-.013zM26.5 27.142v4h-2v-4h-3l4-5 4 5h-3z'></path> |
| 22 |
</g> |
| 23 |
<rect |
| 24 |
width='44' |
| 25 |
height='44' |
| 26 |
x='3.5' |
| 27 |
y='4.142' |
| 28 |
stroke='#F9FAFB' |
| 29 |
strokeWidth='7' |
| 30 |
rx='22'></rect> |
| 31 |
<defs> |
| 32 |
<clipPath id='clip0_397_310'> |
| 33 |
<path |
| 34 |
fill='#fff' |
| 35 |
d='M0 0H24V24H0z' |
| 36 |
transform='translate(13.5 14.142)'></path> |
| 37 |
</clipPath> |
| 38 |
</defs> |
| 39 |
</svg> |
| 40 |
); |
| 41 |
} |
| 42 |
|
| 43 |
export default Upload; |
| 44 |
|