import React from 'react';
interface AlertProps {
alert: {
type: 'success' | 'error';
message: string;
};
}
const Alert: React.FC<AlertProps> = ({ alert }) => {
return (
<div
role="alert"
className={`alert ${
alert.type === 'success' ? 'alert-success' : 'alert-error'
} my-4`}
>
<svg
xmlns="http://www.w3.org/2000/svg"
className="h-6 w-6 shrink-0 stroke-current"
fill="none"
viewBox="0 0 24 24"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"
/>
</svg>
<span>{alert.message}</span>
</div>
);
};
export default Alert;