mirror of
https://github.com/netbirdio/netbird.git
synced 2026-08-10 12:05:39 -04:00
20 lines
378 B
TypeScript
20 lines
378 B
TypeScript
import { cn } from "@/utils/helpers";
|
|
|
|
interface HelpTextProps {
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
export default function HelpText({ children, className }: HelpTextProps) {
|
|
return (
|
|
<span
|
|
className={cn(
|
|
"text-[.8rem] text-nb-gray-300 block font-light tracking-wide",
|
|
className
|
|
)}
|
|
>
|
|
{children}
|
|
</span>
|
|
);
|
|
}
|