import { For } from 'solid-js' import { useLocalize } from '../../../context/localize' import { useSession } from '../../../context/session' import { Icon } from '../../_shared/Icon' import styles from './SocialProviders.module.scss' export const PROVIDERS = ['facebook', 'google', 'github'] // 'vk' | 'telegram' export const SocialProviders = () => { const { t } = useLocalize() const { oauth } = useSession() return (