export default function Alert({ type = 'warning', children }) { const icons = { warning: '⚠️', error: '✖', success: '✔' }; return (
{icons[type]} {children}
); }