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

export const IconLineSolidOutline = 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-solid-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M20 10C20 10.5523 19.5523 11 19 11H1C0.447715 11 0 10.5523 0 10C0 9.44772 0.447715 9 1 9H19C19.5523 9 20 9.44772 20 10Z"
          fill={color}
          fillRule="evenodd"
          clipRule="evenodd"
        />
      </svg>
    );
  }
);

IconLineSolidOutline.displayName = "IconLineSolidOutline";

export default IconLineSolidOutline;
