Skip to content

Notif

Notif displays a rich notification item with title, message, timestamp, and optional actions.

Basic Usage

New message
You have a new message.
import { Notif } from "@paramanu/feedback-react"
export default function App() {
return (
<Notif title="New message" message="You have a new message." timestamp="2 min ago" />
)
}
<div class="pm-notif pm-notif--neutral" role="article">
<div class="pm-notif__content">
<div class="pm-notif__title">New message</div>
<div class="pm-notif__message">You have a new message.</div>
<time class="pm-notif__timestamp">2 min ago</time>
</div>
</div>