mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
33 lines
953 B
TypeScript
33 lines
953 B
TypeScript
import * as React from "react";
|
|
import { Separator as SeparatorPrimitive } from "@base-ui-components/react/separator";
|
|
import { cn } from "../utils";
|
|
|
|
interface SeparatorProps extends React.ComponentProps<typeof SeparatorPrimitive> {
|
|
/**
|
|
* The orientation of the separator
|
|
* @default "horizontal"
|
|
*/
|
|
orientation?: "horizontal" | "vertical";
|
|
}
|
|
|
|
const Separator = React.forwardRef(function Separator(
|
|
{ orientation = "horizontal", className, ...props }: SeparatorProps,
|
|
ref: React.ForwardedRef<React.ElementRef<typeof SeparatorPrimitive>>
|
|
) {
|
|
return (
|
|
<SeparatorPrimitive
|
|
ref={ref}
|
|
orientation={orientation}
|
|
data-slot="separator"
|
|
data-orientation={orientation}
|
|
{...props}
|
|
className={cn("bg-subtle-1", "shrink-0", orientation === "horizontal" ? "h-px w-full" : "h-full w-px", className)}
|
|
/>
|
|
);
|
|
});
|
|
|
|
Separator.displayName = "Separator";
|
|
|
|
export { Separator };
|
|
export type { SeparatorProps };
|