Files
plane/packages/propel/src/separator/separator.tsx
2025-12-17 14:07:01 +05:30

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 };