infoalloggi-monorepo/apps/infoalloggi/src/components/ui/Infoalloggi.tsx

17 lines
310 B
TypeScript
Raw Normal View History

2025-08-04 17:45:44 +02:00
import { cn } from "~/lib/utils";
const Infoalloggi = (props: { opt?: string }) => {
2025-08-28 18:27:07 +02:00
return (
<span
className={cn(
2025-10-10 16:18:43 +02:00
"font-bold text-3xl text-primary tracking-wide antialiased",
2025-08-28 18:27:07 +02:00
props.opt,
)}
>
<span className="text-red-500">Info</span>Alloggi.it
</span>
);
2025-08-04 17:45:44 +02:00
};
export { Infoalloggi };