Notes 1 Icon

notes-1 · Notes Documents · 1 styles

Notes 1 sits in the Notes Documents shelf of the Solar Icons library. It is one of 24 glyphs in that category and one of 1,246 icons in the library overall, each drawn on the same 24x24 grid so Notes 1 lines up optically with everything around it. The icon is addressed in templates by the string "notes-1", and every style variant resolves from that single name.

In practice it stands for collections of notes. That places Notes 1 in the Notes Documents family, which covers notes, clipboards, archives and written records and turns up in note editors, archive views, document lists and audit trails. Teams building knowledge bases and internal tools reach for this set first. Use Notes 1 where the label alone would be ambiguous — an icon-only button, a dense table row, a mobile tab bar — and keep an accessible name on the control, because the SVG itself is decorative.

Notes 1 in 1 styles

Notes 1 is available in 1 style variant: Bold Duotone. Bold Duotone gives you a filled body with a second, lower-opacity layer that adds depth without a second colour token. A common pairing is Bold Duotone for the selected state and Bold Duotone for the rest, so the active item reads without a colour change.

Bold DuotoneNotes1BoldDuotone

How to use the notes-1 icon in Angular

You register only the variants you actually render, so nothing unused reaches the bundle. Import Notes1BoldDuotone from the "@rchernando/solar-icons/notes-documents" entry point, hand it to provideSolarIcons in your application config or in a route-level providers array, and render it with the solar-icon component. All 1 exports for notes-1 live in that same entry point, so switching style is a one-line change.

typescript
import { Notes1BoldDuotone } from '@rchernando/solar-icons/notes-documents';
typescript
import { ApplicationConfig } from '@angular/core';
import { provideSolarIcons } from '@rchernando/solar-icons';
import { Notes1BoldDuotone } from '@rchernando/solar-icons/notes-documents';

export const appConfig: ApplicationConfig = {
  providers: [provideSolarIcons(Notes1BoldDuotone)]
};
html
<solar-icon name="notes-1" iconStyle="bold-duotone" size="24px" />

More Notes Documents icons

Icons drawn alongside it in Notes Documents include Document Text, Clipboard List, Archive Up, Archive, Archive Check, Archive Down, Archive Down Minimlistic and Archive Minimalistic. They share stroke weight and corner radius with Notes 1, so mixing them in one toolbar stays consistent.

Browse all Notes Documents icons →

Icons related to Notes 1

If Notes 1 is not quite the shape you want, Adhesive Plaster2, Armchair2, Bag Music2, Bag2 and Bag3 share part of its name and often work as substitutes.

Elsewhere in the library

Across the rest of the set, Chat Square Check, Stars Line, Magnifer Zoom In, Cart Large, Square Alt Arrow Up and Link Square cover neighbouring ideas; the name "notes-1" is 7 characters long and splits into 2 tokens, which is how the explorer's search matches it.

Notes 1 icon FAQ

How do I use the notes-1 icon in Angular?
Import Notes1BoldDuotone from "@rchernando/solar-icons/notes-documents", register it with provideSolarIcons(Notes1BoldDuotone) and render <solar-icon name="notes-1" iconStyle="bold-duotone" />. No HTTP request is made — the SVG is inlined at build time.
Which styles does Notes 1 support?
1 of them: Bold Duotone. Each is a separate export, so you only ship the ones you import.
Can I change the size and colour of notes-1?
Yes. The size input accepts any CSS length and the SVG uses currentColor, so Notes 1 inherits the text colour of its container — a Tailwind class such as text-violet-400 is enough.

One of 1,246 icons in the Solar Icons explorer. See also the installation guide and the styling reference.