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

17 lines
335 B
TypeScript
Raw Normal View History

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