import { forwardRef } from "react";
import type { IconProps } from "../../types";

export const IconFileVideoOutline = forwardRef<SVGSVGElement, IconProps>(
  ({ color = "currentColor", ...props }, forwardedRef) => {
    const { className } = props;
    props = {
      ...props,
      width: `${props.width || props.size || 20}`,
      height: `${props.height || props.size || 20}`,
      className: `${
        className ? className + " " : ""
      }customeow-shein-icon customeow-shein-icon-icon-file-video-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path d="M8.29993 9.5L12.2999 12L8.29993 14.5V9.5Z" fill={color} />
        <path
          d="M12.1251 1.90991H3.4231V18.09H16.5768V6.36161L12.1251 1.90991ZM4.6731 16.84V3.15991H11.2412V7.2455H15.3268V16.84H4.6731ZM12.4912 5.9955V4.0438L14.4429 5.9955H12.4912Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconFileVideoOutline.displayName = "IconFileVideoOutline";

export default IconFileVideoOutline;
