import React, { FC } from 'react';
import { ADSIcon } from "../../icons.types";

const Send20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <path fill-rule="evenodd" d="M18.145 5.034a.75.75 0 0 1-.054.845l-7.5 9.583a.75.75 0 0 1-1.106.083l-1.462-1.381-2.19 1.46a.75.75 0 0 1-1.163-.556l-.405-4.453-2.28-2.153a.75.75 0 0 1 .392-1.285l15-2.5a.75.75 0 0 1 .768.357ZM5.913 12.17l.99.936-.853.57-.137-1.506Zm.89-1.222 3.114 2.94 5.188-6.63-8.302 3.69Zm6.823-4.127-7.61 3.383-1.903-1.797 9.513-1.586Z"/>
</svg>
)
export default Send20