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

const LivingRoom64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M49.376 47.833h-34.75a68.994 68.994 0 0 1-.45-4.166h35.65a68.913 68.913 0 0 1-.45 4.166ZM44.8 56.474l-1.88-5.64H21.081l-1.88 5.64a1.5 1.5 0 1 1-2.847-.948l1.564-4.693h-4.555a1.5 1.5 0 0 1-1.493-1.168L6.541 27.01a1.5 1.5 0 0 1 2.92-.687l1.652 7.023c.237-3.47.759-6.974 1.677-10.25 1.248-4.458 3.258-8.604 6.385-11.65C22.337 8.366 26.555 6.5 32 6.5c5.445 0 9.663 1.866 12.825 4.946 3.127 3.046 5.138 7.192 6.386 11.65.917 3.276 1.44 6.78 1.676 10.25l1.653-7.023a1.5 1.5 0 1 1 2.92.687l-5.33 22.658a1.495 1.495 0 0 1-.995 1.091 1.489 1.489 0 0 1-.498.074h-4.555l1.564 4.693a1.5 1.5 0 1 1-2.846.948Zm5.153-14.807H14.048a71.573 71.573 0 0 1-.08-4.927c4.066-.868 10.765-1.907 18.033-1.907 7.267 0 13.966 1.039 18.032 1.907.031 1.68 0 3.334-.08 4.927Zm-.051-8.018c-4.299-.871-10.84-1.816-17.901-1.816-7.062 0-13.603.945-17.902 1.816.221-3.318.714-6.653 1.58-9.745 1.162-4.153 2.969-7.757 5.589-10.309C23.852 11.078 27.312 9.5 32 9.5s8.148 1.578 10.732 4.095c2.62 2.552 4.427 6.156 5.59 10.31.865 3.09 1.358 6.426 1.579 9.744Z"/>
</svg>
)
export default LivingRoom64