diff --git a/frontend/src/lib/components/icons/AuthentikIcon.svelte b/frontend/src/lib/components/icons/AuthentikIcon.svelte
new file mode 100644
index 0000000000..ee52fba6af
--- /dev/null
+++ b/frontend/src/lib/components/icons/AuthentikIcon.svelte
@@ -0,0 +1,27 @@
+
diff --git a/frontend/src/lib/components/icons/index.ts b/frontend/src/lib/components/icons/index.ts
index 1f62901e1c..bee278a9d4 100644
--- a/frontend/src/lib/components/icons/index.ts
+++ b/frontend/src/lib/components/icons/index.ts
@@ -66,6 +66,7 @@ import NocoDbIcon from './NocoDbIcon.svelte'
import AzureIcon from './AzureIcon.svelte'
import OktaIcon from './OktaIcon.svelte'
import MsSqlServerIcon from './MSSqlServerIcon.svelte'
+import AuthentikIcon from './AuthentikIcon.svelte';
export const APP_TO_ICON_COMPONENT = {
postgresql: PostgresIcon,
@@ -138,7 +139,8 @@ export const APP_TO_ICON_COMPONENT = {
graphql: GraphqlIcon,
nocodb: NocoDbIcon,
azure: AzureIcon,
- okta: OktaIcon
+ okta: OktaIcon,
+ authentik: AuthentikIcon
} as const
export {
@@ -204,5 +206,6 @@ export {
NocoDbIcon,
AzureIcon,
MicrosoftIcon,
- OktaIcon
+ OktaIcon,
+ AuthentikIcon
}