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

const ConnectedHome24: 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="M12.614 2.21a1 1 0 0 0-1.228 0l-9 7a1 1 0 1 0 1.228 1.58l.386-.3V21a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V10.489l.386.3a1 1 0 0 0 1.228-1.578l-9-7ZM18 8.934l-6-4.666-6 4.667V20h12V8.933ZM13 17a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-3.121-2.621a.5.5 0 1 0 .707.707 2 2 0 0 1 2.828 0 .5.5 0 0 0 .707-.707 3 3 0 0 0-4.242 0Zm-1.414-.708a.5.5 0 0 1 0-.707 5 5 0 0 1 7.07 0 .5.5 0 0 1-.706.707 4 4 0 0 0-5.657 0 .5.5 0 0 1-.707 0Zm-1.414-2.12a.5.5 0 1 0 .707.706 6 6 0 0 1 8.485 0 .5.5 0 0 0 .707-.707 7 7 0 0 0-9.9 0Z"/>
</svg>
)
export default ConnectedHome24