save icon
Free save SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons files 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="M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2Z"/>
<polyline points="17 21 17 13 7 13 7 21"/>
<polyline points="7 3 7 8 15 8"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/files/save.svg"
width="24" height="24" alt="save icon">
<!-- …or paste the raw SVG from the SVG tab -->import { SaveIcon } from "@softicons/react";
export default function Example() {
return <SaveIcon size={24} strokeWidth={2} />;
}<script setup>
import { SaveIcon } from "@softicons/vue";
</script>
<template>
<SaveIcon :size="24" :stroke-width="2" />
</template>import { SaveIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [SaveIconComponent],
template: `<save-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}