function CheckMark() {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      viewBox="0 0 24 24"
      width="24"
      height="24"
      role="img"
      className="components-checkbox-control__checked"
      aria-hidden="true"
      focusable="false"
    >
      <path d="M18.3 5.6L9.9 16.9l-4.6-3.4-.9 1.2 5.8 4.3 9.3-12.6z" />
    </svg>
  );
}
export default CheckMark;
