mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-07-19 11:41:04 +02:00
27 lines
754 B
TypeScript
27 lines
754 B
TypeScript
|
|
import { Handle, HandleProps } from "@xyflow/react";
|
||
|
|
import { forwardRef } from "react";
|
||
|
|
|
||
|
|
import { cn } from "@/lib/utils";
|
||
|
|
|
||
|
|
export type BaseHandleProps = HandleProps;
|
||
|
|
|
||
|
|
export const BaseHandle = forwardRef<HTMLDivElement, BaseHandleProps>(
|
||
|
|
({ className, children, ...props }, ref) => {
|
||
|
|
return (
|
||
|
|
<Handle
|
||
|
|
ref={ref}
|
||
|
|
{...props}
|
||
|
|
className={cn(
|
||
|
|
"h-[11px] w-[11px] rounded-full border border-slate-300 bg-slate-100 transition dark:border-secondary dark:bg-secondary",
|
||
|
|
className,
|
||
|
|
)}
|
||
|
|
{...props}
|
||
|
|
>
|
||
|
|
{children}
|
||
|
|
</Handle>
|
||
|
|
);
|
||
|
|
},
|
||
|
|
);
|
||
|
|
|
||
|
|
BaseHandle.displayName = "BaseHandle";
|