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

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

    return (
        <svg
            xmlns="http://www.w3.org/2000/svg"
            viewBox="0 0 24 24"
            width={width}
            height={height}
            {...restProps}
            fill="none"
        >
            <path
                stroke={stroke}
                strokeWidth={1.8}
                strokeLinecap="round"
                strokeLinejoin="round"
                d="M17.3546 11.1185L6.47222 5.28869C5.80606 4.93182 5 5.41443 5 6.17017V17.8298C5 18.5856 5.80605 19.0682 6.47222 18.7113L17.3546 12.8815C18.0583 12.5045 18.0583 11.4955 17.3546 11.1185Z"
            />
        </svg>
    );
};

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