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

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

    delete restProps.fill;

    return (
        <svg
            xmlns="http://www.w3.org/2000/svg"
            viewBox="0 0 48 48"
            width={width}
            height={height}
            fill="none"
            {...restProps}
        >
            <path
                stroke={stroke}
                strokeLinecap="round"
                strokeLinejoin="round"
                strokeWidth={2.4}
                d="M32.04 22H15.96c-1.18 0-2.09-1.06-1.94-2.25l.95-7.02c.13-.99.96-1.73 1.94-1.73H31.1c.98 0 1.8.74 1.94 1.73l.95 7.02c.15 1.2-.76 2.25-1.94 2.25z"
            />
            <path
                stroke={stroke}
                strokeMiterlimit={10}
                strokeWidth={2.4}
                d="m15 30-6-.04V26l5.01.04c.38 0 .72.21.89.54l.99 1.98c.25.49.05 1.08-.44 1.33-.14.07-.3.11-.45.11Z"
            />
            <path
                stroke={stroke}
                strokeLinejoin="round"
                strokeWidth={2.4}
                d="M39 33V23L37.22 8.75c-.13-1-.98-1.75-1.98-1.75H12.77c-1.01 0-1.86.75-1.98 1.75L9.01 23v10"
            />
            <path
                stroke={stroke}
                strokeMiterlimit={10}
                strokeWidth={2.4}
                d="M33 3h-2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1ZM33.01 30l5.99-.04V26h-4.99c-.38 0-.73.21-.9.55l-1 2a.998.998 0 0 0 .9 1.45Z"
            />
            <path
                stroke={stroke}
                strokeLinecap="round"
                strokeLinejoin="round"
                strokeWidth={2.4}
                d="M3 33h42c-3.16 7.41 0 12 0 12H3s3.13-5.13 0-12"
            />
        </svg>
    );
};

Schneepflug.propTypes = {
    width: PropTypes.string,
    height: PropTypes.string,
    stroke: PropTypes.string,
};

export default Schneepflug;
