mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-26 20:26:39 +00:00
15 lines
283 B
TypeScript
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>
|
|
);
|
|
}
|