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