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

const SecurePaymentAlt32: FC<ADSIcon>  = 
    ({fill, size = '2rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  <path fill-rule="evenodd" d="M9.667 9.333a6.333 6.333 0 0 1 12.666 0v3h3a1 1 0 0 1 1 1V28a1 1 0 0 1-1 1H6.667a1 1 0 0 1-1-1V13.333a1 1 0 0 1 1-1h3v-3Zm10.666 0v3h-8.666v-3a4.333 4.333 0 0 1 8.666 0Zm-12.666 5V27h16.666V14.333H7.667Zm12.707 4.707a1 1 0 1 0-1.415-1.414l-4.005 4.005-1.962-1.717a1 1 0 1 0-1.317 1.505l2.666 2.334a1 1 0 0 0 1.366-.046l4.667-4.667Z"/>
</svg>
)
export default SecurePaymentAlt32