Send.tsx 314 B

123456789101112131415161718
  1. import React from "react";
  2. function Send() {
  3. return (
  4. <svg
  5. xmlns="http://www.w3.org/2000/svg"
  6. width="32"
  7. height="32"
  8. fill="currentColor"
  9. version="1.1"
  10. viewBox="0 0 24 24"
  11. >
  12. <path d="M2 21l21-9L2 3v7l15 2-15 2v7z"></path>
  13. </svg>
  14. );
  15. }
  16. export default Send;