corner down right icon
Free corner down right 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">
<polyline points="15 10 20 15 15 20"/>
<path d="M4 4v7a4 4 0 0 0 4 4h12"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/arrows/corner-down-right.svg"
width="24" height="24" alt="corner down right icon">
<!-- …or paste the raw SVG from the SVG tab -->import { CornerDownRightIcon } from "@softicons/react";
export default function Example() {
return <CornerDownRightIcon size={24} strokeWidth={2} />;
}<script setup>
import { CornerDownRightIcon } from "@softicons/vue";
</script>
<template>
<CornerDownRightIcon :size="24" :stroke-width="2" />
</template>import { CornerDownRightIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [CornerDownRightIconComponent],
template: `<corner-down-right-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}