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

export const IconLineThicknessSolid = 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-line-thickness-solid`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          fill={color}
          d="M3 4.2H17V5.7H3zM3 7.7H17V10.1H3zM3 12.1H17V15.7H3z"
        />
      </svg>
    );
  }
);

IconLineThicknessSolid.displayName = "IconLineThicknessSolid";

export default IconLineThicknessSolid;
