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

const Security48: 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="M17.5 14a6.5 6.5 0 1 1 13 0v4.5h-13V14Zm-3 4.5V14a9.5 9.5 0 0 1 19 0v4.5H36a1.5 1.5 0 0 1 1.5 1.5v22a1.5 1.5 0 0 1-1.5 1.5H12a1.5 1.5 0 0 1-1.5-1.5V20a1.5 1.5 0 0 1 1.5-1.5h2.5Zm1.5 3h-2.5v19h21v-19H16Zm7.424 10.299c.02.1.026.205.014.311l-.32 2.89h1.765l-.321-2.89a.997.997 0 0 1 .014-.311 1 1 0 0 1 .456-1.085 2 2 0 1 0-2.064 0 1 1 0 0 1 .456 1.085Zm3.145.267a4 4 0 1 0-5.138 0l-.425 3.824A1 1 0 0 0 22 37h4a1 1 0 0 0 .994-1.11l-.425-3.824Z"/>
</svg>
)
export default Security48