import * as React from 'react';
import PropTypes from 'prop-types';
import { Icon48PropValues } from '../_defaultIconPropValues.ts';

const Hausmuell = (props) => {
    const {
        width = Icon48PropValues.width,
        height = Icon48PropValues.height,
        stroke = Icon48PropValues.stroke,
        fill = Icon48PropValues.fill,
        ...restProps
    } = props;

    return (
        <svg
            xmlns="http://www.w3.org/2000/svg"
            viewBox="0 0 48 48"
            width={width}
            height={height}
            fill="none"
            {...restProps}
        >
            <path
                fill={fill}
                stroke={stroke}
                strokeWidth={0.8}
                d="M45.477 36.273H2.523a1.022 1.022 0 1 0 0 2.045h42.954a1.022 1.022 0 1 0 0-2.045ZM21.51 33.195c6.56 0 11.671-2.845 15.029-8.176l2.8.004h.007c1.553 0 3.115-.672 4.286-1.844s1.843-2.736
                1.845-4.292c.002-1.577-.602-3.022-1.7-4.07-.88-.84-2.028-1.35-3.28-1.516v-.162c0-1.906-1.577-3.457-3.513-3.457H6.035c-1.937 0-3.512 1.551-3.512 3.458v.415a1 1 0 0 0 .012.16c1.984 12.561 8.722
                19.48 18.975 19.48Zm18.674-17.878c.842.102 1.606.432 2.18.98.69.657 1.069 1.577 1.068 2.588-.002 2.143-1.95 4.092-4.086 4.092h-.004l-1.669-.002c1.095-2.216 1.938-4.772 2.511-7.658ZM4.568
                13.14c0-.766.672-1.413 1.467-1.413h5.678l6.264 4.058-3.708 2.225a1.023 1.023 0 0 0-.128 1.662l6.136 5.114a1.02 1.02 0 0 0 1.44-.131 1.02 1.02 0 0 0-.13-1.44l-5.03-4.192 3.879-2.328a1.023 1.023
                0 0 0 .029-1.735l-4.99-3.233h21.509c.795 0 1.467.647 1.467 1.413v.334C36.118 28.08 27.954 31.149 21.51 31.149c-11.658 0-15.65-9.592-16.942-17.675z"
            />
        </svg>
    );
};

Hausmuell.propTypes = {
    width: PropTypes.string,
    height: PropTypes.string,
    fill: PropTypes.string,
    stroke: PropTypes.string,
};
export default Hausmuell;
