import { Trans } from 'react-i18next';
import { Link } from 'react-router-dom';
import { VegaIcon, VegaIconNames } from '@vegaprotocol/ui-toolkit';
import { useT } from '../../lib/use-t';
import { Links } from '../../lib/links';
export const RiskAckContent = () => {
const t = useT();
return (
<>
-
{t(
'Conduct your own due diligence and consult your financial advisor before making any investment decisions.'
)}
-
{t(
'You may encounter bugs, loss of functionality or loss of assets.'
)}
-
{t('No party accepts any liability for any losses whatsoever.')}
]}
/>
>
);
};
const DisclaimerLink = ({ children }: { children?: string[] }) => (
{children}
);