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

export const IconTrianglesPlaySolid = 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-icon customeow-icon-icon-triangles-play-solid`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M7.28615 3.40689C6.28674 2.79187 5 3.51089 5 4.68437V15.3157C5 16.4892 6.28674 17.2082 7.28615 16.5932L16.2009 11.1072C17.0258 10.5996 17.0258 9.4005 16.2009 8.89287L7.28615 3.40689Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconTrianglesPlaySolid.displayName = "IconTrianglesPlaySolid";

export default IconTrianglesPlaySolid;
