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

export const IconPauseSolid = 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-pause-solid`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M5 3.00006V17.0001H8V3C7 3.00016 6 3.00005 5 3.00006ZM12 3.00007V17.0001H15V3.00002L12 3.00007Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconPauseSolid.displayName = "IconPauseSolid";

export default IconPauseSolid;
