import { useState } from 'react'; export const SecurityWarnings = () => { const [isExpanded, setIsExpanded] = useState(false); return (
{/* Header */}
setIsExpanded(!isExpanded)} >
โš ๏ธ Security Limitations
{isExpanded ? 'โ–ผ' : 'โ–ถ'}
{/* Expanded Content */} {isExpanded && (
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 }) => (
{icon}
{title}
{description}
);