We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1d1052 commit d8fe12cCopy full SHA for d8fe12c
packages/streamwall/src/renderer/overlay.tsx
@@ -10,6 +10,7 @@ import {
10
FaVolumeUp,
11
FaYoutube,
12
} from 'react-icons/fa'
13
+import { RiKickFill, RiTwitterXFill } from 'react-icons/ri'
14
import { StreamwallState } from 'streamwall-shared'
15
import { styled } from 'styled-components'
16
import { TailSpin } from 'svg-loaders-react'
@@ -146,6 +147,10 @@ function StreamIcon({ url }: { url: string }) {
146
147
return <FaInstagram />
148
} else if (host === 'tiktok.com') {
149
return <FaTiktok />
150
+ } else if (host === 'kick.com') {
151
+ return <RiKickFill />
152
+ } else if (host === 'x.com') {
153
+ return <RiTwitterXFill />
154
}
155
return null
156
0 commit comments