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

export const IconLogoBytedanceSolid = 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-logo-bytedance-solid`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M1.50244 16.6249L4.37688 15.891V4.0887L1.50244 3.35486V16.6249Z"
          fill={color}
        />
        <path
          d="M15.5669 2.56177V17.3604L18.5022 16.6265V3.35652L15.5669 2.56177Z"
          fill={color}
        />
        <path
          d="M10.9197 8.06465L13.855 7.33081V15.097L10.9197 14.3632V8.06465Z"
          fill={color}
        />
        <path
          d="M6.08887 9.22668L9.02422 9.96052V16.2591L6.08887 17.0538V9.22668Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconLogoBytedanceSolid.displayName = "IconLogoBytedanceSolid";

export default IconLogoBytedanceSolid;
