Quizify / frontend /src /components /Alert.jsx
hetsheta's picture
Migrate frontend to React + Vite with glassmorphism UI
5d00a33
Raw
History Blame Contribute Delete
282 Bytes
export default function Alert({ type = 'warning', children }) {
const icons = { warning: '⚠️', error: '✖', success: '✔' };
return (
<div className={`alert alert-${type}`} role="alert">
<span>{icons[type]}</span>
<span>{children}</span>
</div>
);
}