softicons.dev

notebook lock icon

Free notebook lock SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons interface 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="M4 4a2 2 0 0 1 2-2h12a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6a2 2 0 0 1-2-2Z"/>
  <line x1="4" y1="8" x2="2" y2="8"/>
  <line x1="4" y1="12" x2="2" y2="12"/>
  <line x1="4" y1="16" x2="2" y2="16"/>
  <line x1="10" y1="6" x2="15" y2="6"/>
  <rect x="9.7" y="12.65" width="4.6" height="2.99" rx="0.8"/>
  <path d="M10.85 12.65v-1.03a1.15 1.15 0 0 1 2.3 0v1.03"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/notebook-lock.svg"
     width="24" height="24" alt="notebook lock icon">

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

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

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

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