Skip to content

Commit d8fe12c

Browse files
committed
Add Kick and X icons
1 parent a1d1052 commit d8fe12c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/streamwall/src/renderer/overlay.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {
1010
FaVolumeUp,
1111
FaYoutube,
1212
} from 'react-icons/fa'
13+
import { RiKickFill, RiTwitterXFill } from 'react-icons/ri'
1314
import { StreamwallState } from 'streamwall-shared'
1415
import { styled } from 'styled-components'
1516
import { TailSpin } from 'svg-loaders-react'
@@ -146,6 +147,10 @@ function StreamIcon({ url }: { url: string }) {
146147
return <FaInstagram />
147148
} else if (host === 'tiktok.com') {
148149
return <FaTiktok />
150+
} else if (host === 'kick.com') {
151+
return <RiKickFill />
152+
} else if (host === 'x.com') {
153+
return <RiTwitterXFill />
149154
}
150155
return null
151156
}

0 commit comments

Comments
 (0)