money-receive.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <svg
  3. width="24"
  4. height="24"
  5. viewBox="0 0 24 24"
  6. fill="none"
  7. xmlns="http://www.w3.org/2000/svg"
  8. >
  9. <path
  10. d="M9.5 13.75C9.5 14.72 10.25 15.5 11.17 15.5H13.05C13.85 15.5 14.5 14.82 14.5 13.97C14.5 13.06 14.1 12.73 13.51 12.52L10.5 11.47C9.91 11.26 9.51001 10.94 9.51001 10.02C9.51001 9.17999 10.16 8.48999 10.96 8.48999H12.84C13.76 8.48999 14.51 9.26999 14.51 10.24"
  11. :stroke="color"
  12. stroke-width="1.5"
  13. stroke-linecap="round"
  14. stroke-linejoin="round"
  15. />
  16. <path
  17. d="M12 7.5V16.5"
  18. :stroke="color"
  19. stroke-width="1.5"
  20. stroke-linecap="round"
  21. stroke-linejoin="round"
  22. />
  23. <path
  24. d="M17 3V7H21"
  25. :stroke="color"
  26. stroke-width="1.5"
  27. stroke-linecap="round"
  28. stroke-linejoin="round"
  29. />
  30. <path
  31. d="M22 2L17 7"
  32. :stroke="color"
  33. stroke-width="1.5"
  34. stroke-linecap="round"
  35. stroke-linejoin="round"
  36. />
  37. <path
  38. d="M12 2C6.48 2 2 6.48 2 12C2 15.94 4.28001 19.35 7.60001 20.98"
  39. :stroke="color"
  40. stroke-width="1.5"
  41. stroke-linecap="round"
  42. stroke-linejoin="round"
  43. />
  44. <path
  45. d="M22 12C22 17.52 17.52 22 12 22"
  46. :stroke="color"
  47. stroke-width="1.5"
  48. stroke-linecap="round"
  49. stroke-linejoin="round"
  50. />
  51. </svg>
  52. </template>
  53. <script>
  54. export default {
  55. props: {
  56. title: {
  57. type: String,
  58. default: "money receive",
  59. },
  60. color: {
  61. type: String,
  62. default: "#212121",
  63. },
  64. },
  65. };
  66. </script>