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

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

    return (
        <svg
            xmlns="http://www.w3.org/2000/svg"
            viewBox="0 0 160 160"
            width={width}
            height={height}
            fill="none"
            {...restProps}
        >
            <path
                fill={fill}
                stroke={stroke}
                d="M151.973 113.697a4 4 0 0 0-.304-.197L83.786 74.981v-9.827c.028-1.381.921-2.591 2.332-3.048 6.872-2.457 11.487-9.036 11.487-16.37a17.3 17.3 0 0 0-5.058-12.289 17.11 17.11 0 0
                0-12.215-5.093h-.003c-4.612 0-8.949 1.807-12.21 5.09-3.261 3.281-5.058 7.646-5.06 12.287 0 1.92 1.546 3.476 3.455 3.476 1.908 0 3.455-1.556 3.455-3.476 0-2.784 1.08-5.403 3.036-7.373a10.26 10.26 0
                0 1 7.324-3.053h.003c2.768 0 5.37 1.086 7.33 3.056a10.4 10.4 0 0 1 3.033 7.374c0 4.4-2.77 8.348-6.79 9.787-4.118 1.328-6.943 5.145-7.028 9.564v9.895L8.998 113.5a4 4 0 0 0-.304.194 10.36 10.36 0 0
                0-4.215 6.76c-.46 2.75.169 5.509 1.775 7.783a10.37 10.37 0 0 0 8.444 4.382h131.277c2.767 0 5.364-1.083 7.321-3.051a10.4 10.4 0 0 0 3.036-7.372c0-3.37-1.629-6.547-4.358-8.499Zm-3.563 10.956a3.42
                3.42 0 0 1-2.439 1.015H14.697a3.46 3.46 0 0 1-2.816-1.46 3.48 3.48 0 0 1-.59-2.596 3.45 3.45 0 0 1 1.284-2.162L80.332 81l67.758 38.45a3.49 3.49 0 0 1 1.332 2.742c0 .93-.361 1.806-1.012 2.461Z"
            />
        </svg>
    );
};

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