+ Open
+ This toast example uses triggers to automatically open a toast when the button is clicked.
+
+
+```
diff --git a/static/usage/v7/toast/inline/basic/angular/example_component_ts.md b/static/usage/v7/toast/inline/basic/angular/example_component_ts.md
new file mode 100644
index 00000000000..25750404bf4
--- /dev/null
+++ b/static/usage/v7/toast/inline/basic/angular/example_component_ts.md
@@ -0,0 +1,11 @@
+```ts
+import { Component } from '@angular/core';
+import { IonButton, IonContent, IonHeader, IonTitle, IonToast, IonToolbar } from '@ionic/angular/standalone';
+
+@Component({
+ selector: 'app-example',
+ templateUrl: 'example.component.html',
+ imports: [IonButton, IonContent, IonHeader, IonTitle, IonToast, IonToolbar],
+})
+export class ExampleComponent {}
+```
diff --git a/static/usage/v7/toast/inline/basic/index.md b/static/usage/v7/toast/inline/basic/index.md
index aa61cab896b..73f11ad2105 100644
--- a/static/usage/v7/toast/inline/basic/index.md
+++ b/static/usage/v7/toast/inline/basic/index.md
@@ -3,7 +3,9 @@ import Playground from '@site/src/components/global/Playground';
import javascript from './javascript.md';
import react from './react.md';
import vue from './vue.md';
-import angular from './angular.md';
+
+import angular_example_component_html from './angular/example_component_html.md';
+import angular_example_component_ts from './angular/example_component_ts.md';