A component which shows a notification.
You need to remove the element after you receive the
rtkNotificationDismiss event.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
Icon pack |
notification |
Notification |
✅ | - | Message |
paused |
boolean |
✅ | - | Stops timeout when true |
size |
Size |
✅ | - | Size |
t |
RtkI18n |
❌ | useLanguage() |
Language |
import { RtkNotification } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkNotification />;
}import { RtkNotification } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkNotification
notification={notification}
paused={true}
size="md"
/>
);
}