notebook user icon
Free notebook user 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"/>
<circle cx="12" cy="11.73" r="1.03"/>
<path d="M9.93 15.07a2.07 2.07 0 0 1 4.14 0"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/notebook-user.svg"
width="24" height="24" alt="notebook user icon">
<!-- …or paste the raw SVG from the SVG tab -->import { NotebookUserIcon } from "@softicons/react";
export default function Example() {
return <NotebookUserIcon size={24} strokeWidth={2} />;
}<script setup>
import { NotebookUserIcon } from "@softicons/vue";
</script>
<template>
<NotebookUserIcon :size="24" :stroke-width="2" />
</template>import { NotebookUserIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [NotebookUserIconComponent],
template: `<notebook-user-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}