diff --git a/docs/src/pages/components/ToastNotification.svx b/docs/src/pages/components/ToastNotification.svx
index d924de80..4dc44e8e 100644
--- a/docs/src/pages/components/ToastNotification.svx
+++ b/docs/src/pages/components/ToastNotification.svx
@@ -1,30 +1,32 @@
+---
+components: ["ToastNotification"]
+---
+
-Toasts are non-modal, time-based window elements used to display short messages;
-they usually appear at the top of the screen and disappear after a few seconds.
+`ToastNotification` displays non-modal, time-based messages that appear at the top of the screen and automatically disappear. It supports various notification types, custom content, and accessibility features.
-See [detailed
-usage](https://carbondesignsystem.com/components/notification/usage).
+See [detailed usage](https://carbondesignsystem.com/components/notification/usage).
See also: [InlineNotification](InlineNotification)
## Default (error)
+Display a basic error notification with title, subtitle, and timestamp.
+
## Autoclose
-By default, `ToastNotification` does not automatically close.
-
Specify the `timeout` prop to automatically close the notification after a specified duration (in milliseconds).
## Prevent default close behavior
-`ToastNotification` is a controlled component. Prevent the default close behavior using the `e.preventDefault()` method in the dispatched `on:close` event.
+Prevent the default close behavior using `e.preventDefault()` in the `on:close` event handler.
{
e.preventDefault();
@@ -33,12 +35,14 @@ Specify the `timeout` prop to automatically close the notification after a speci
## Full width
-Set `fullWidth` to `true` for the notification to span the full width of its containing element.
+Set `fullWidth` to `true` for the notification to span the full width of its container.
## Slottable title, subtitle, caption
+Customize the notification content using slots for more flexibility.
+
Error:
An internal server error occurred.
@@ -47,9 +51,7 @@ Set `fullWidth` to `true` for the notification to span the full width of its con
## Accessible icon descriptions
-The status icon and close button icon descriptions appear on cursor hover and are read
-by assistive technology. Default descriptions are provided in English and can be
-overridden via `statusIconDescription` and `closeButtonDescription`.
+Provide custom descriptions for icons to improve accessibility.
## Notification variants
+The component supports different notification types:
+
@@ -73,6 +79,8 @@ overridden via `statusIconDescription` and `closeButtonDescription`.
## Low contrast
+Use low contrast variants for less prominent notifications.
+