diff --git a/frontend/src/lib/components/icons/AutheliaIcon.svelte b/frontend/src/lib/components/icons/AutheliaIcon.svelte
new file mode 100644
index 0000000000..037844b4d3
--- /dev/null
+++ b/frontend/src/lib/components/icons/AutheliaIcon.svelte
@@ -0,0 +1,32 @@
+
diff --git a/frontend/src/lib/components/icons/index.ts b/frontend/src/lib/components/icons/index.ts
index bee278a9d4..d36451f9b0 100644
--- a/frontend/src/lib/components/icons/index.ts
+++ b/frontend/src/lib/components/icons/index.ts
@@ -67,6 +67,7 @@ import AzureIcon from './AzureIcon.svelte'
import OktaIcon from './OktaIcon.svelte'
import MsSqlServerIcon from './MSSqlServerIcon.svelte'
import AuthentikIcon from './AuthentikIcon.svelte';
+import AutheliaIcon from './AutheliaIcon.svelte';
export const APP_TO_ICON_COMPONENT = {
postgresql: PostgresIcon,
@@ -140,7 +141,8 @@ export const APP_TO_ICON_COMPONENT = {
nocodb: NocoDbIcon,
azure: AzureIcon,
okta: OktaIcon,
- authentik: AuthentikIcon
+ authentik: AuthentikIcon,
+ authelia: AutheliaIcon
} as const
export {
@@ -207,5 +209,6 @@ export {
AzureIcon,
MicrosoftIcon,
OktaIcon,
- AuthentikIcon
+ AuthentikIcon,
+ AutheliaIcon
}