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

const Berlin = (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
                fill="none"
                stroke={stroke}
                strokeLinecap="round"
                strokeLinejoin="round"
                strokeWidth={2.6}
                d="m6.3 16.11 3.38.47.31-4.03h2.83l1.72-3.62 1.9 3.48 2.78.35 1.69-2.88L25.9 8l2.86 1.95-.47 5.2 3.77 1.43 1.57 2.64 3.77 1.34-1.49 6.67 2.59-.78 6.5 3.02-1.31 4.68-3.47 3.9-1.91 2.77-.96-3.92-5.72-.75-4.75-2.87-2.89.96v3.81l-5.28-3.2-5.66.63-.94-1.41-4.79 2.9L3 35.19l2.2-2.38-1.18-3.45 3.22-4.25-3.29-.7.54-3.77z"
            />
        </svg>
    );
};

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