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

const BulletPoint = (props) => {
    const {
        width = Icon40PropValues.width,
        height = Icon40PropValues.height,
        ...restProps
    } = props;

    return (
        <svg
            width={width}
            height={height}
            {...restProps}
            viewBox="0 0 24 24"
            fill="none"
            xmlns="http://www.w3.org/2000/svg"
        >
            <path
                d="M8 9.4C8 8.6268 8.6268 8 9.4 8H14.6C15.3732 8 16 8.6268 16 9.4V14.6C16 15.3732 15.3732 16 14.6 16H9.4C8.6268 16 8 15.3732 8 14.6V9.4Z"
                fill="#F66504"
                stroke="none"
            />
        </svg>
    );
};

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