Notification Unread Lines 1 Icon

notification-unread-lines-1 · Notifications · 1 styles

Open the Notifications set and Notification Unread Lines 1 is one of the glyphs you get. It is one of 8 glyphs in that category and one of 1,246 icons in the library overall, each drawn on the same 24x24 grid so Notification Unread Lines 1 lines up optically with everything around it. The icon is addressed in templates by the string "notification-unread-lines-1", and every style variant resolves from that single name.

The metaphor here is notifications, items that have not been opened and stacked lines and lists. That places Notification Unread Lines 1 in the Notifications family, which covers bells, alerts and muted state and turns up in notification bells, preference toggles, snooze menus and alert banners. Teams building any product with a notification centre reach for this set first. Use Notification Unread Lines 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.

Notification Unread Lines 1 in 1 styles

Notification Unread Lines 1 ships 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 DuotoneNotificationUnreadLines1BoldDuotone

How to use the notification-unread-lines-1 icon in Angular

You register only the variants you actually render, so nothing unused reaches the bundle. Import NotificationUnreadLines1BoldDuotone from the "@rchernando/solar-icons/notifications" 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 notification-unread-lines-1 live in that same entry point, so switching style is a one-line change.

typescript
import { NotificationUnreadLines1BoldDuotone } from '@rchernando/solar-icons/notifications';
typescript
import { ApplicationConfig } from '@angular/core';
import { provideSolarIcons } from '@rchernando/solar-icons';
import { NotificationUnreadLines1BoldDuotone } from '@rchernando/solar-icons/notifications';

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

More Notifications icons

Icons drawn alongside it in Notifications include Notification Remove, Bell Bing, Notification Unread Lines, Notification Lines Remove, Bell, Notification Unread and Bell Off. They share stroke weight and corner radius with Notification Unread Lines 1, so mixing them in one toolbar stays consistent.

Browse all Notifications icons →

Icons related to Notification Unread Lines 1

If Notification Unread Lines 1 is not quite the shape you want, Notification Unread Lines, Notification Lines Remove, Notification Unread, Adhesive Plaster2 and Armchair2 share part of its name and often work as substitutes.

Elsewhere in the library

Across the rest of the set, Heart Broken, Call Medicine Rounded, Tea Cup, Pin, Folder Check and Battery Low cover neighbouring ideas; the name "notification-unread-lines-1" is 27 characters long and splits into 4 tokens, which is how the explorer's search matches it.

Notification Unread Lines 1 icon FAQ

How do I use the notification-unread-lines-1 icon in Angular?
Import NotificationUnreadLines1BoldDuotone from "@rchernando/solar-icons/notifications", register it with provideSolarIcons(NotificationUnreadLines1BoldDuotone) and render <solar-icon name="notification-unread-lines-1" iconStyle="bold-duotone" />. No HTTP request is made — the SVG is inlined at build time.
Which styles does Notification Unread Lines 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 notification-unread-lines-1?
Yes. The size input accepts any CSS length and the SVG uses currentColor, so Notification Unread Lines 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.