in space-slack-sync/client/src/app/components/channelIcon.tsx [28:38]
function EmptyIcon(props: EmptyIconProps) {
if (props.optionType === "Slack") {
return <>
<Icon name="slack-channel" specialIconForDarkTheme={true}/>
</>
} else {
return <>
<Icon name="space-channel" specialIconForDarkTheme={true}/>
</>
}
}