mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-23 00:13:36 +10:00
50ba37a27f
* chore(release): v5.1.0 * feat: implement resume thumbnails * fix: remove unused mcp tools * docs: fix formatting of docs
19 lines
517 B
TypeScript
19 lines
517 B
TypeScript
import { Separator as SeparatorPrimitive } from "@base-ui/react/separator";
|
|
import { cn } from "@reactive-resume/utils/style";
|
|
|
|
function Separator({ className, orientation = "horizontal", ...props }: SeparatorPrimitive.Props) {
|
|
return (
|
|
<SeparatorPrimitive
|
|
data-slot="separator"
|
|
orientation={orientation}
|
|
className={cn(
|
|
"shrink-0 bg-border data-horizontal:h-px data-horizontal:w-full data-vertical:w-px data-vertical:self-stretch",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export { Separator };
|