import React from "react";

const MaterialSymbolsArrowRightAltIcon = (
  props: React.ComponentPropsWithoutRef<"svg">,
) => {
  return (
    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
      <path
        fill="currentColor"
        d="m14 18l-1.4-1.45L16.15 13H4v-2h12.15L12.6 7.45L14 6l6 6z"
      />
    </svg>
  );
};

export default MaterialSymbolsArrowRightAltIcon;
