XIOPM 1 und 2 in dashboard

This commit is contained in:
ISA
2024-09-29 17:56:46 +02:00
parent 4880b6473e
commit 8989a78936
4 changed files with 47 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
// components/Access1Status.jsx
import React from "react";
const Access1Status = () => {
return (
<div className="border border-gray-400 w-20 h-10 flex items-center justify-start bg-blue-500">
{/* Grüner Streifen auf der linken Seite */}
<div className=" left-0 top-0 h-full w-1/6 bg-green-500 mr-2"></div>
{/* Blauer Hauptbereich */}
<div className="flex flex-row text-white text-xs ">XIOPM 2</div>
</div>
);
};
export default Access1Status;