<script context="module" lang="ts">
  export interface LeftArrowIconProps {
    svgAttrs?: SVGProps;
  }
</script>

<script lang="ts">
  import { SVGProps } from "../types";

  export let svgAttrs: LeftArrowIconProps["svgAttrs"] = undefined;
</script>

<svg
  fill="none"
  viewBox="0 0 24 24"
  stroke-width="1.5"
  stroke="currentColor"
  {...svgAttrs}
  ><path
    stroke-linecap="round"
    stroke-linejoin="round"
    d="M10.5 19.5 3 12m0 0 7.5-7.5M3 12h18"
  /></svg
>