folders icon
Free folders 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="M8 17h12a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 11.93 4H8a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2Z"/>
<path d="M2 8v11a2 2 0 0 0 2 2h14"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/files/folders.svg"
width="24" height="24" alt="folders icon">
<!-- …or paste the raw SVG from the SVG tab -->import { FoldersIcon } from "@softicons/react";
export default function Example() {
return <FoldersIcon size={24} strokeWidth={2} />;
}<script setup>
import { FoldersIcon } from "@softicons/vue";
</script>
<template>
<FoldersIcon :size="24" :stroke-width="2" />
</template>import { FoldersIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [FoldersIconComponent],
template: `<folders-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}