expand icon
Free expand 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">
<path d="m15 15 6 6"/>
<path d="M21 16v5h-5"/>
<path d="m15 9 6-6"/>
<path d="M21 8V3h-5"/>
<path d="m9 15-6 6"/>
<path d="M3 16v5h5"/>
<path d="M9 9 3 3"/>
<path d="M3 8V3h5"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/arrows/expand.svg"
width="24" height="24" alt="expand icon">
<!-- …or paste the raw SVG from the SVG tab -->import { ExpandIcon } from "@softicons/react";
export default function Example() {
return <ExpandIcon size={24} strokeWidth={2} />;
}<script setup>
import { ExpandIcon } from "@softicons/vue";
</script>
<template>
<ExpandIcon :size="24" :stroke-width="2" />
</template>import { ExpandIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [ExpandIconComponent],
template: `<expand-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}