import React from 'react';
export const SecurityWarnings: React.FC = () => {
return (
Recommendation:{' '}
Use this tool on a dedicated offline device. Clear browser data after each use. Never use on shared/public computers.
);
};
const Warning = ({
icon,
title,
description,
}: {
icon: string;
title: string;
description: string;
}) => (
);