Use for notification drawers with stacked alerts, search/filter controls, and bulk action buttons in the footer.
<nve-page>
<nve-page-panel slot="left" size="md" closable>
<nve-page-panel-header>
<h3 nve-text="heading medium sm">5 Notifications</h3>
</nve-page-panel-header>
<nve-page-panel-content style="--padding: 0">
<div nve-layout="row pad:sm gap:sm">
<nve-search rounded>
<input type="search" aria-label="search" placeholder="search" />
</nve-search>
<nve-icon-button icon-name="filter"></nve-icon-button>
<nve-icon-button icon-name="gear"></nve-icon-button>
</div>
<nve-notification closable container="flat">
<h3 nve-text="label">Notification</h3>
<p nve-text="body">This is a notification in a notification drawer, messages should be succinct.</p>
</nve-notification>
<nve-notification status="accent" container="flat" closable>
<h3 nve-text="label">Notification</h3>
<p nve-text="body">This is a notification in a notification drawer, messages should be succinct.</p>
</nve-notification>
<nve-notification status="success" container="flat" closable>
<h3 nve-text="label">Notification</h3>
<p nve-text="body">This is a notification in a notification drawer, messages should be succinct.</p>
</nve-notification>
<nve-notification status="warning" container="flat" closable>
<h3 nve-text="label">Notification</h3>
<p nve-text="body">This is a notification in a notification drawer, messages should be succinct.</p>
</nve-notification>
<nve-notification status="danger" container="flat" closable>
<h3 nve-text="label">Notification</h3>
<p nve-text="body">This is a notification in a notification drawer, messages should be succinct.</p>
</nve-notification>
</nve-page-panel-content>
<nve-page-panel-footer>
<div nve-layout="grid gap:sm span-items:6">
<nve-button interaction="destructive" container="flat">Clear All</nve-button>
<nve-button>Mark All as Read</nve-button>
</div>
</nve-page-panel-footer>
</nve-page-panel>
<main nve-layout="column gap:lg pad:lg">
<h1 nve-text="heading">Main Content</h1>
<p nve-text="body">View notifications in the panel.</p>
</main>
</nve-page>
5 Notifications
Notification
This is a notification in a notification drawer, messages should be succinct.
Notification
This is a notification in a notification drawer, messages should be succinct.
Notification
This is a notification in a notification drawer, messages should be succinct.
Notification
This is a notification in a notification drawer, messages should be succinct.
Notification
This is a notification in a notification drawer, messages should be succinct.