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

const LivingRoom48: 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="M36.704 35.5H11.296a51.408 51.408 0 0 1-.268-2.5h25.944a51.659 51.659 0 0 1-.268 2.5Zm-3.46 6.974L31.919 38.5H16.081l-1.324 3.974a1.5 1.5 0 1 1-2.846-.948l1.008-3.026h-2.888a1.5 1.5 0 0 1-1.493-1.168L4.54 20.344a1.5 1.5 0 0 1 2.92-.688l.714 3.033c.221-1.86.564-3.707 1.057-5.468.947-3.382 2.48-6.56 4.888-8.905C16.564 5.936 19.822 4.5 24 4.5c4.179 0 7.437 1.436 9.881 3.816 2.409 2.346 3.942 5.523 4.889 8.905.493 1.761.835 3.607 1.057 5.468l.713-3.033a1.5 1.5 0 1 1 2.92.688l-3.997 16.99A1.498 1.498 0 0 1 37.97 38.5h-2.89l1.009 3.026a1.5 1.5 0 1 1-2.846.948ZM37.101 31H10.9a53.295 53.295 0 0 1-.052-3.14c3.048-.632 7.901-1.36 13.153-1.36 5.253 0 10.106.728 13.154 1.36a53.38 53.38 0 0 1-.053 3.14Zm-.084-6.227C33.775 24.143 29.065 23.5 24 23.5c-5.065 0-9.774.644-13.016 1.273.178-2.303.537-4.604 1.136-6.744.861-3.077 2.19-5.711 4.092-7.564C18.08 8.648 20.58 7.5 24 7.5c3.422 0 5.922 1.148 7.788 2.965 1.902 1.853 3.231 4.487 4.093 7.564.599 2.14.957 4.441 1.136 6.744Z"/>
</svg>
)
export default LivingRoom48