database icon
Free database 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">
<ellipse cx="12" cy="5" rx="8" ry="3"/>
<path d="M4 5v6c0 1.7 3.6 3 8 3s8-1.3 8-3V5"/>
<path d="M4 11v6c0 1.7 3.6 3 8 3s8-1.3 8-3v-6"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/files/database.svg"
width="24" height="24" alt="database icon">
<!-- …or paste the raw SVG from the SVG tab -->import { DatabaseIcon } from "@softicons/react";
export default function Example() {
return <DatabaseIcon size={24} strokeWidth={2} />;
}<script setup>
import { DatabaseIcon } from "@softicons/vue";
</script>
<template>
<DatabaseIcon :size="24" :stroke-width="2" />
</template>import { DatabaseIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [DatabaseIconComponent],
template: `<database-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}