feat(base): add drop-edge indicator component for pragmatic-dnd

This commit is contained in:
Philipinho
2026-05-24 02:18:31 +01:00
parent 911bf53924
commit 218b5755a9
2 changed files with 48 additions and 0 deletions
@@ -0,0 +1,10 @@
import type { Edge } from "@atlaskit/pragmatic-drag-and-drop-hitbox/closest-edge";
import classes from "@/features/base/styles/grid.module.css";
type Props = {
edge: Edge;
};
export function BaseDropEdgeIndicator({ edge }: Props) {
return <div className={classes.dropEdgeLine} data-edge={edge} aria-hidden />;
}