aboutsummaryrefslogtreecommitdiff
path: root/packages/ui/components/text-separator.tsx
blob: bd4482331161240479c5a78481da87eebb5e9e9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { cn } from "@lib/utils";

interface TextSeparatorProps extends React.ComponentProps<"div"> {
	text: string;
}

export function TextSeparator({
	text,
	className,
	...props
}: TextSeparatorProps) {
	return (
		<div
			className={cn("flex gap-4 items-center justify-center", className)}
			{...props}
		>
			<span className="text-foreground text-[0.75rem] uppercase tracking-[-0.2px] leading-3.5">
				{text}
			</span>
		</div>
	);
}