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

const SecurePaymentAlt24: FC<ADSIcon>  = 
    ({fill, size = '1.5rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
  <path fill-rule="evenodd" d="M7 7a5 5 0 0 1 10 0v2h2a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V10a1 1 0 0 1 1-1h2V7Zm8 0v2H9V7a3 3 0 1 1 6 0Zm-9 4v9h12v-9H6Zm9.457 3.457a1 1 0 0 0-1.414-1.414l-2.839 2.838-1.296-1.134a1 1 0 0 0-1.316 1.506l2 1.75a1 1 0 0 0 1.365-.046l3.5-3.5Z"/>
</svg>
)
export default SecurePaymentAlt24