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

export const IconColon = 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-colon`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <circle cx="10" cy="6" r="1.5" fill={color} />
        <circle cx="10" cy="14" r="1.5" fill={color} />
      </svg>
    );
  }
);

IconColon.displayName = "IconColon";

export default IconColon;
