diff --git a/docs/docs/getting-started/components.md b/docs/docs/getting-started/components.md index c358383c5..2e5b32d58 100644 --- a/docs/docs/getting-started/components.md +++ b/docs/docs/getting-started/components.md @@ -96,5 +96,6 @@ Here is a list of the open source components which can be added to `Airy Core`: - sources-twilio - sources-viber - sources-whatsapp +- flink-connector More information about the components API can be found [here](/api/endpoints/components). diff --git a/frontend/control-center/src/components/ChannelAvatar/index.tsx b/frontend/control-center/src/components/ChannelAvatar/index.tsx index b1d6c33bf..6894e2c24 100644 --- a/frontend/control-center/src/components/ChannelAvatar/index.tsx +++ b/frontend/control-center/src/components/ChannelAvatar/index.tsx @@ -27,6 +27,7 @@ import {ReactComponent as MosaicAvatar} from 'assets/images/icons/mosaic.svg'; import {ReactComponent as WeaviateAvatar} from 'assets/images/icons/weaviate.svg'; import {ReactComponent as GmailAvatar} from 'assets/images/icons/gmail.svg'; import {ReactComponent as SlackAvatar} from 'assets/images/icons/slack.svg'; +import {ReactComponent as FlinkAvatar} from 'assets/images/icons/flink.svg'; import {Channel, Source} from 'model'; import styles from './index.module.scss'; @@ -135,6 +136,8 @@ export const getChannelAvatar = (source: string) => { return ; case 'Slack connector': return ; + case 'Flink connector': + return ; default: return ; diff --git a/lib/typescript/assets/images/icons/flink.svg b/lib/typescript/assets/images/icons/flink.svg new file mode 100644 index 000000000..8dc93c211 --- /dev/null +++ b/lib/typescript/assets/images/icons/flink.svg @@ -0,0 +1 @@ + \ No newline at end of file