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

const Pause = (props) => {
    const {
        width = Icon40PropValues.width,
        height = Icon40PropValues.height,
        stroke = Icon40PropValues.stroke,
        ...restProps
    } = props;
    delete restProps.fill;

    return (
        <svg
            xmlns="http://www.w3.org/2000/svg"
            viewBox="0 0 24 24"
            width={width}
            height={height}
            {...restProps}
            fill="none"
        >
            <rect
                width={5.5}
                height={18}
                x={4.5}
                y={3}
                stroke={stroke}
                strokeLinejoin="round"
                strokeWidth={1.8}
                rx={1}
            />
            <rect
                width={5.5}
                height={18}
                x={14}
                y={3}
                stroke={stroke}
                strokeLinejoin="round"
                strokeWidth={1.8}
                rx={1}
            />
        </svg>
    );
};

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