import { cn } from "@lib/utils"; interface TextSeparatorProps extends React.ComponentProps<"div"> { text: string; } export function TextSeparator({ text, className, ...props }: TextSeparatorProps) { return (