softicons.dev

arrow up left icon

Free arrow up left SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons arrows set.

Setup guide
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
     fill="none" stroke="currentColor" stroke-width="2"
     stroke-linecap="round" stroke-linejoin="round">
  <line x1="17" y1="17" x2="7" y2="7"/>
  <polyline points="7 13 7 7 13 7"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/arrows/arrow-up-left.svg"
     width="24" height="24" alt="arrow up left icon">

<!-- …or paste the raw SVG from the SVG tab -->
import { ArrowUpLeftIcon } from "@softicons/react";

export default function Example() {
  return <ArrowUpLeftIcon size={24} strokeWidth={2} />;
}
<script setup>
import { ArrowUpLeftIcon } from "@softicons/vue";
</script>

<template>
  <ArrowUpLeftIcon :size="24" :stroke-width="2" />
</template>
import { ArrowUpLeftIconComponent } from "@softicons/angular";

@Component({
  standalone: true,
  imports: [ArrowUpLeftIconComponent],
  template: `<arrow-up-left-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}