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

const LivingRoom20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <path fill-rule="evenodd" d="M15.184 14.667H4.817a21.376 21.376 0 0 1-.09-.834h10.546a19.23 19.23 0 0 1-.09.834Zm-1.45 3.07-.524-1.57H6.79l-.523 1.57a.75.75 0 0 1-1.423-.474l.366-1.096H4.182a.746.746 0 0 1-.713-.475.745.745 0 0 1-.034-.11L1.77 8.506a.75.75 0 1 1 1.46-.343l.144.61c.088-.554.204-1.101.352-1.63.398-1.422 1.045-2.769 2.07-3.767C6.838 2.36 8.228 1.75 10 1.75c1.773 0 3.162.61 4.204 1.625 1.025.998 1.672 2.345 2.07 3.767.149.529.264 1.076.352 1.63l.144-.61a.75.75 0 1 1 1.46.343l-1.665 7.078a.75.75 0 0 1-.747.584h-1.027l.365 1.096a.75.75 0 0 1-1.423.474Zm1.604-4.904H4.662a22.134 22.134 0 0 1-.02-1.122A27.93 27.93 0 0 1 10 11.167c2.124 0 4.09.287 5.357.544.003.38-.004.756-.02 1.122Zm-.052-2.664A29.428 29.428 0 0 0 10 9.667a29.43 29.43 0 0 0-5.285.502c.077-.898.222-1.79.455-2.623.356-1.27.901-2.345 1.672-3.096.754-.734 1.764-1.2 3.158-1.2s2.404.466 3.158 1.2c.771.751 1.317 1.827 1.672 3.096.233.833.378 1.725.456 2.623Z"/>
</svg>
)
export default LivingRoom20