diff --git a/assets/icons/app/alert-circle.svg b/assets/icons/app/alert-circle.svg
index 640df5662..5ba53cb80 100644
--- a/assets/icons/app/alert-circle.svg
+++ b/assets/icons/app/alert-circle.svg
@@ -1,3 +1,3 @@
diff --git a/assets/icons/app/crossed-circle.svg b/assets/icons/app/crossed-circle.svg
new file mode 100644
index 000000000..79fb75f0f
--- /dev/null
+++ b/assets/icons/app/crossed-circle.svg
@@ -0,0 +1,3 @@
+
diff --git a/assets/icons/app/pause-circle.svg b/assets/icons/app/pause-circle.svg
new file mode 100644
index 000000000..a9b3f3236
--- /dev/null
+++ b/assets/icons/app/pause-circle.svg
@@ -0,0 +1,3 @@
+
diff --git a/assets/icons/app/solid-pause.svg b/assets/icons/app/solid-pause.svg
index c09630ada..53e7a9507 100644
--- a/assets/icons/app/solid-pause.svg
+++ b/assets/icons/app/solid-pause.svg
@@ -1,3 +1,4 @@
diff --git a/assets/icons/app/solid-play.svg b/assets/icons/app/solid-play.svg
index 36ded6257..36fc617c1 100644
--- a/assets/icons/app/solid-play.svg
+++ b/assets/icons/app/solid-play.svg
@@ -1,5 +1,3 @@
\ No newline at end of file
+
+
diff --git a/assets/icons/app/solid-stop.svg b/assets/icons/app/solid-stop.svg
index 91e1732cc..93e22595f 100644
--- a/assets/icons/app/solid-stop.svg
+++ b/assets/icons/app/solid-stop.svg
@@ -1,5 +1,3 @@
\ No newline at end of file
+
+
diff --git a/lib/icons/app/AlertCircle.tsx b/lib/icons/app/AlertCircle.tsx
index 602c0263c..3c8b04cd7 100644
--- a/lib/icons/app/AlertCircle.tsx
+++ b/lib/icons/app/AlertCircle.tsx
@@ -1,5 +1,5 @@
import type { SVGProps } from "react";
import { Ref, forwardRef } from "react";
-const SvgAlertCircle = (props: SVGProps, ref: Ref) => ;
+const SvgAlertCircle = (props: SVGProps, ref: Ref) => ;
const ForwardRef = forwardRef(SvgAlertCircle);
export default ForwardRef;
\ No newline at end of file
diff --git a/lib/icons/app/CrossedCircle.tsx b/lib/icons/app/CrossedCircle.tsx
new file mode 100644
index 000000000..dd7416c89
--- /dev/null
+++ b/lib/icons/app/CrossedCircle.tsx
@@ -0,0 +1,5 @@
+import type { SVGProps } from "react";
+import { Ref, forwardRef } from "react";
+const SvgCrossedCircle = (props: SVGProps, ref: Ref) => ;
+const ForwardRef = forwardRef(SvgCrossedCircle);
+export default ForwardRef;
\ No newline at end of file
diff --git a/lib/icons/app/PauseCircle.tsx b/lib/icons/app/PauseCircle.tsx
new file mode 100644
index 000000000..a62d786d8
--- /dev/null
+++ b/lib/icons/app/PauseCircle.tsx
@@ -0,0 +1,5 @@
+import type { SVGProps } from "react";
+import { Ref, forwardRef } from "react";
+const SvgPauseCircle = (props: SVGProps, ref: Ref) => ;
+const ForwardRef = forwardRef(SvgPauseCircle);
+export default ForwardRef;
\ No newline at end of file
diff --git a/lib/icons/app/SolidPause.tsx b/lib/icons/app/SolidPause.tsx
index 7c5cb9632..a29964c95 100644
--- a/lib/icons/app/SolidPause.tsx
+++ b/lib/icons/app/SolidPause.tsx
@@ -1,5 +1,5 @@
import type { SVGProps } from "react";
import { Ref, forwardRef } from "react";
-const SvgSolidPause = (props: SVGProps, ref: Ref) => ;
+const SvgSolidPause = (props: SVGProps, ref: Ref) => ;
const ForwardRef = forwardRef(SvgSolidPause);
export default ForwardRef;
\ No newline at end of file
diff --git a/lib/icons/app/SolidPlay.tsx b/lib/icons/app/SolidPlay.tsx
index 34c76c10c..4ab9b6a58 100644
--- a/lib/icons/app/SolidPlay.tsx
+++ b/lib/icons/app/SolidPlay.tsx
@@ -1,5 +1,5 @@
import type { SVGProps } from "react";
import { Ref, forwardRef } from "react";
-const SvgSolidPlay = (props: SVGProps, ref: Ref) => ;
+const SvgSolidPlay = (props: SVGProps, ref: Ref) => ;
const ForwardRef = forwardRef(SvgSolidPlay);
export default ForwardRef;
\ No newline at end of file
diff --git a/lib/icons/app/index.ts b/lib/icons/app/index.ts
index b3f5fc870..1d6ce4acb 100644
--- a/lib/icons/app/index.ts
+++ b/lib/icons/app/index.ts
@@ -31,6 +31,7 @@ export { default as Coffee } from './Coffee'
export { default as Comment } from './Comment'
export { default as CreditCard } from './CreditCard'
export { default as Cross } from './Cross'
+export { default as CrossedCircle } from './CrossedCircle'
export { default as Delete } from './Delete'
export { default as Desktop } from './Desktop'
export { default as DollarBill } from './DollarBill'
@@ -76,6 +77,7 @@ export { default as MoneyBag } from './MoneyBag'
export { default as Money } from './Money'
export { default as Office } from './Office'
export { default as PalmTree } from './PalmTree'
+export { default as PauseCircle } from './PauseCircle'
export { default as Pencil } from './Pencil'
export { default as People } from './People'
export { default as Person } from './Person'