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