softicons.dev

memory stick icon

Free memory stick SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons devices 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="M6 19v-3"/>
  <path d="M10 19v-3"/>
  <path d="M14 19v-3"/>
  <path d="M18 19v-3"/>
  <path d="M8 11V9"/>
  <path d="M16 11V9"/>
  <path d="M12 11V9"/>
  <path d="M2 15h20"/>
  <path d="M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.1a2 2 0 0 0 0 3.84V17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1.06a2 2 0 0 0 0-3.84Z"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/devices/memory-stick.svg"
     width="24" height="24" alt="memory stick icon">

<!-- …or paste the raw SVG from the SVG tab -->
import { MemoryStickIcon } from "@softicons/react";

export default function Example() {
  return <MemoryStickIcon size={24} strokeWidth={2} />;
}
<script setup>
import { MemoryStickIcon } from "@softicons/vue";
</script>

<template>
  <MemoryStickIcon :size="24" :stroke-width="2" />
</template>
import { MemoryStickIconComponent } from "@softicons/angular";

@Component({
  standalone: true,
  imports: [MemoryStickIconComponent],
  template: `<memory-stick-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}