import * as React from "react"; import styled from "styled-components"; type Props = { disabled?: boolean; isActiveDrop: boolean; innerRef: React.Ref; position?: "top"; }; function DropCursor({ isActiveDrop, innerRef, position, disabled }: Props) { return ( ); } // transparent hover zone with a thin visible band vertically centered const Cursor = styled.div<{ isOver?: boolean; disabled?: boolean; position?: "top"; }>` opacity: ${(props) => (props.isOver ? 1 : 0)}; transition: opacity 150ms; position: absolute; z-index: 1; width: 100%; height: 14px; background: transparent; ${(props) => (props.position === "top" ? "top: -7px;" : "bottom: -7px;")} ::after { background: ${(props) => props.disabled ? props.theme.sidebarActiveBackground : props.theme.slateDark}; position: absolute; top: 6px; content: ""; height: 2px; border-radius: 2px; width: 100%; } `; export default DropCursor;