import { useTranslation } from 'react-i18next'; import { Button, Form, Input, InputNumber, Select, Space, Switch } from 'antd'; import { ReloadOutlined } from '@ant-design/icons'; interface WireguardFieldsProps { wgPubKey: string; regenInboundWg: () => void; } export default function WireguardFields({ wgPubKey, regenInboundWg }: WireguardFieldsProps) { const { t } = useTranslation(); return ( <>