15 lines
339 B
TypeScript
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;
|