()
| 2 | import Icon from "./Icon"; |
| 3 | |
| 4 | const WeChatQRCodeView = () => { |
| 5 | const { t } = useTranslation(); |
| 6 | |
| 7 | return ( |
| 8 | <a |
| 9 | className="w-auto px-4 py-2 rounded-full cursor-pointer bg-green-600 text-white text-sm font-medium flex flex-row justify-center items-center hover:underline hover:shadow" |
| 10 | href="/wechat-qrcode.webp" |
| 11 | target="_blank" |
| 12 | > |
| 13 | <Icon.BsWechat className="w-4 h-auto mr-1" /> |
| 14 | {t("social.join-wechat-group")} |
| 15 | </a> |
| 16 | ); |
| 17 | }; |
| 18 | |
| 19 | export default WeChatQRCodeView; |
nothing calls this directly
no outgoing calls
no test coverage detected