forked from baron/baron-sso
17 lines
374 B
TypeScript
17 lines
374 B
TypeScript
import * as React from "react";
|
|
import { cn } from "../../lib/utils";
|
|
|
|
const Separator = React.forwardRef<
|
|
HTMLDivElement,
|
|
React.HTMLAttributes<HTMLDivElement>
|
|
>(({ className, ...props }, ref) => (
|
|
<div
|
|
ref={ref}
|
|
className={cn("shrink-0 bg-border", "h-px w-full", className)}
|
|
{...props}
|
|
/>
|
|
));
|
|
Separator.displayName = "Separator";
|
|
|
|
export { Separator };
|