You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
1.3 KiB

import React from 'react';
import { Svg, Path } from 'react-native-svg';
const SendIcon = ({ color = "#373737", size = 24 }) => (
<Svg width={size} height={size} viewBox="0 0 24 24" fill="none">
<Path
d="M14.8026 20.8883C14.2762 20.8883 13.8551 20.6784 13.434 20.3635C13.0129 19.9436 12.6971 19.4187 12.6971 18.7889V16.6894C10.381 16.6894 5.59104 18.3193 3.5908 21.0485C3.27496 21.5734 2.53803 21.8883 1.90637 21.9933H1.59055C0.537776 21.7833 -0.093887 20.8386 0.0113994 19.7889C0.537776 15.2751 3.11694 11.0209 5.85411 8.8165C7.85436 7.24191 10.1704 6.40212 12.6971 6.19218V4.19772C12.6971 3.25297 13.1182 2.41318 13.9604 2.09825C14.6973 1.88833 15.5395 1.99329 16.1712 2.62313L22.9089 9.44634C23.4353 9.86623 23.7511 10.496 23.8564 11.2309C23.9616 11.9657 23.7511 12.7005 23.2247 13.2253C23.1194 13.3303 23.0142 13.5402 22.8036 13.6452L16.2765 20.2585C15.8554 20.6784 15.329 20.8883 14.8026 20.8883ZM13.1182 14.59H14.8026V18.7889L21.435 11.9657L21.5403 11.8607C21.6456 11.7557 21.6456 11.5458 21.6456 11.4408C21.6456 11.2309 21.5403 11.1259 21.435 11.0209L21.3297 10.9159L14.6973 4.19772V8.18666L13.2234 8.29164C11.0127 8.29164 8.90712 9.02644 7.11743 10.3911C5.01189 12.0706 2.32748 16.4309 1.90637 20C4.53827 16.7458 10.4863 14.59 13.1182 14.59Z"
fill={color}
/>
</Svg>
);
export default SendIcon;