export const UpdateIcon: React.FC<React.SVGAttributes<{}>> = (props) => (
  <svg xmlns="http://www.w3.org/2000/svg" fill="none" {...props}>
    <path
      stroke="currentColor"
      strokeLinecap="round"
      strokeLinejoin="round"
      strokeWidth={1.5}
      d="M13.352 7.79h4.16l-2.65-2.652A6.875 6.875 0 0 0 3.359 8.22m-.871 8.15v-4.16m0 0h4.16m-4.16 0 2.65 2.652a6.875 6.875 0 0 0 11.502-3.084m.872-8.149V7.79"
    />
  </svg>
);
