import React from "react";

const CodexChecklistIcon = (props: React.ComponentPropsWithoutRef<"svg">) => {
  return (
    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
      <g fill="none" stroke="currentColor" strokeWidth={2}>
        <path
          strokeLinecap="round"
          d="m9.2 12l1.859 1.859a.2.2 0 0 0 .282 0L14.7 10.5"
        />
        <rect width="14" height="14" x="5" y="5" rx="4" />
      </g>
    </svg>
  );
};

export default CodexChecklistIcon;
