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

const SecurePaymentAlt48: FC<ADSIcon>  = 
    ({fill, size = '3rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
  <path fill-rule="evenodd" d="M14.5 14a9.5 9.5 0 0 1 19 0v4.5H38a1.5 1.5 0 0 1 1.5 1.5v22a1.5 1.5 0 0 1-1.5 1.5H10A1.5 1.5 0 0 1 8.5 42V20a1.5 1.5 0 0 1 1.5-1.5h4.5V14Zm16 0v4.5h-13V14a6.5 6.5 0 1 1 13 0Zm-19 7.5v19h25v-19h-25Zm19.06 7.06a1.5 1.5 0 0 0-2.12-2.12l-6.008 6.007-2.944-2.576a1.5 1.5 0 0 0-1.976 2.258l4 3.5a1.5 1.5 0 0 0 2.049-.068l7-7Z"/>
</svg>
)
export default SecurePaymentAlt48