MIF_E31221222/sigap-website/app/_components/logo/sigap-logo.tsx

15 lines
339 B
TypeScript

import React from "react";
const SigapLogo: React.FC = () => {
return (
<div
className="bg-black dark:bg-white rounded-md w-10 h-10 flex items-center justify-center text-white dark:text-black text-2xl font-semibold"
style={{ fontFamily: "Arial, sans-serif" }}
>
S
</div>
);
};
export default SigapLogo;