Files
netbird/proxy/web/src/components/Title.tsx
2026-02-03 19:05:55 +01:00

15 lines
283 B
TypeScript

import { cn } from "@/utils/helpers";
type Props = {
children: React.ReactNode;
className?: string;
};
export function Title({ children, className }: Props) {
return (
<h1 className={cn("text-xl! text-center z-10 relative", className)}>
{children}
</h1>
);
}