Docs
Announcement Banner

Announcement Banner

Dismissable top-of-page animated banner with default, primary, warning, and success variants.

PioneerUI v2.0 is here with 25+ new components!See what's new
🎉 PioneerUI Pro is now available — one-time purchase, lifetime access.Learn more
Maintenance scheduled for Sunday 2AM UTC.

Installation

Usage

import { AnnouncementBanner } from "@/components/pioneerui/announcement-banner"
 
export default function Layout({ children }) {
  return (
    <>
      <AnnouncementBanner
        message="PioneerUI v2.0 is here!"
        href="/docs"
        cta="See what's new"
        variant="primary"
        dismissible
      />
      {children}
    </>
  )
}

Props

PropTypeDefaultDescription
messagestringBanner message text (required)
hrefstringundefinedCTA link URL
ctastringundefinedCTA link text
variantdefault | primary | warning | successdefaultColor scheme
dismissiblebooleantrueShow dismiss button
iconReact.ReactNodeundefinedLeading icon element
onDismiss() => voidundefinedCallback when dismissed