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

export const IconTextAlignLeftOutline = 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-text-align-left-outline`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M2.75 4C2.33579 4 2 4.33579 2 4.75 2 5.16421 2.33579 5.5 2.75 5.5H17.25C17.6642 5.5 18 5.16421 18 4.75 18 4.33579 17.6642 4 17.25 4H2.75ZM2.75 14.5C2.33579 14.5 2 14.8358 2 15.25 2 15.6642 2.33579 16 2.75 16H17.25C17.6642 16 18 15.6642 18 15.25 18 14.8358 17.6642 14.5 17.25 14.5H2.75ZM2.75 9.25C2.33579 9.25 2 9.58579 2 10 2 10.4142 2.33579 10.75 2.75 10.75H10.25C10.6642 10.75 11 10.4142 11 10 11 9.58579 10.6642 9.25 10.25 9.25H2.75Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconTextAlignLeftOutline.displayName = "IconTextAlignLeftOutline";

export default IconTextAlignLeftOutline;
