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

const Tonne60l = (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.6}
                d="M29.15 45h-9.51v-2h9.51c.52 0 .96-.4 1-.92l2.02-25.49c.05-.78.41-1.5 1-2.03l1.48-1.3a.98.98 0 0 0 .34-.75V12H13v.51c0 .28.12.56.33.75l1.49 1.33c.59.52.95 1.25 1 2.04l1.17 20.32-2 .12-1.17-20.31c-.02-.25-.14-.49-.33-.67l-1.5-1.33c-.64-.57-1-1.38-1-2.24v-2.51h26v2.51c0 .86-.37 1.68-1.02 2.25l-1.48 1.3c-.19.17-.31.42-.33.68l-2.02 25.5c-.12 1.55-1.44 2.76-2.99 2.76z"
            />
            <path
                fill={fill}
                stroke={stroke}
                strokeWidth={0.6}
                d="M17 46c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5Zm0-8c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3ZM37 12H11V9c0-1.65 1.35-3 3-3h20c1.65 0 3 1.35 3 3zm-24-2h22V9c0-.55-.45-1-1-1H14c-.55 0-1 .45-1 1zM32 6h-2V5c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1h-2V5c0-1.65 1.35-3 3-3h2c1.65 0 3 1.35 3 3zM32 26H16v2h16z"
            />
        </svg>
    );
};

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

export default Tonne60l;
