<div class="p-4 flex flex-row justify-center">
<div class="w-full md:w-3/5 mx-auto bg-blue-100 border-l-4 border-blue-800 text-blue-800 font-semibold relative p-3 flex flex-row items-start md:items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 inline-block mr-2 absolute top-4 left-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" />
</svg>
<div class="pl-6">
<span>System upto date. Latest version installed is v1.0.0</span>
</div>
</div>
</div>
const Alert = () => {
return (
<div className="p-4 flex flex-row justify-center">
<div className="w-full md:w-3/5 mx-auto bg-blue-100 border-l-4 border-blue-800 text-blue-800 font-semibold relative p-3 flex flex-row items-start md:items-center">
<svg
xmlns="http://www.w3.org/2000/svg"
className="h-5 w-5 inline-block mr-2 absolute top-4 left-2"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<div className="pl-6">
<span>
System upto date. Latest version installed is v1.0.0
</span>
</div>
</div>
</div>
);
}
export default Alert;