AlertBanner
OrganismSayfa düzeyinde bilgi, uyarı veya hata mesajı. role="alert" ile ekran okuyucular için duyurulur. dismissible özelliği eklenebilir.
System update
A new version is available. Please refresh the page.
<AlertBanner
title="System update"
message="A new version is available. Please refresh the page."
dismissible
/>System update
A new version is available. Please refresh the page.
<AlertBanner variant="info" title="System update" message="A new version is available." dismissible />Profile updated successfully.
<AlertBanner variant="success" message="Profile updated successfully." dismissible />Maintenance window
The service will be unavailable from 2–4 AM UTC.
<AlertBanner variant="warning" title="Maintenance window" message="The service will be unavailable from 2–4 AM UTC." />Something went wrong
Unable to load the resource. Please try again.
<AlertBanner variant="error" title="Something went wrong" message="Unable to load the resource. Please try again." />Your plan is expiring
Upgrade before your trial ends to keep access.
<AlertBanner variant="warning" title="Your plan is expiring" message="Upgrade before your trial ends."
action={{ label: 'Upgrade now', onClick: handleUpgrade }} dismissible /><AlertBanner variant="info" title="Documentation updated" message="New guides are available."
action={{ label: 'Read docs', href: '/docs/api' }} />Custom icon override example.
<AlertBanner variant="info" message="Custom icon override." icon={<RocketIcon />} />