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

export const IconConstraintsHorizontallyOutline = 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-constraints-horizontally-outline`,
  };
  return (
    <svg
      viewBox="0 0 20 20"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      {...props}
      ref={forwardedRef}
    >
      <path
        d="M5.25 3C5.25 2.58579 5.58579 2.25 6 2.25H14C14.4142 2.25 14.75 2.58579 14.75 3C14.75 3.41421 14.4142 3.75 14 3.75H10.75L10.75 16.25H14C14.4142 16.25 14.75 16.5858 14.75 17C14.75 17.4142 14.4142 17.75 14 17.75H6C5.58579 17.75 5.25 17.4142 5.25 17C5.25 16.5858 5.58579 16.25 6 16.25H9.25L9.25 3.75H6C5.58579 3.75 5.25 3.41421 5.25 3Z"
        fill={color}
      />
    </svg>
  );
});

IconConstraintsHorizontallyOutline.displayName =
  "IconConstraintsHorizontallyOutline";

export default IconConstraintsHorizontallyOutline;
