Components
Banner communicates system-wide announcements, statuses, and alerts, from Meta's Astryx design system. Supports info, success, warning, and error statuses, dismissable and collapsible content, action buttons via endContent, and a section container variant for in-page placement.
npx @21st-dev/cli add Astryxdesign/astryx-bannerLoading preview...
'use client';
import Banner from '@/components/ui/astryx-banner';
import {Theme} from '@astryxdesign/core/theme';
import {neutralTheme} from '@astryxdesign/theme-neutral/built';
import {Stack} from '@astryxdesign/core/Layout';
export default function BannerShowcase() {
return (
<Theme theme={neutralTheme}>
<div
style={{
minHeight: '100dvh',
display: 'grid',
placeItems: 'center',
padding: 24,
}}>
<Stack direction="vertical" gap={3} style={{maxWidth: 800}}>
<Banner status="info" title="A new software update is available." />
<Banner status="success" title="Your changes have been saved." />
<Banner
status="warning"
title="Your trial expires in 3 days."
description="Upgrade to keep access to all features."
/>
<Banner
status="error"
title="Payment failed."
description="Update your billing information to continue."
/>
</Stack>
</div>
</Theme>
);
}
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...