import { Component, Show } from "solid-js" import { Icon } from "@opencode-ai/ui/icon" type PromptDragOverlayProps = { type: "image" | "@mention" | null label: string } export const PromptDragOverlay: Component = (props) => { return (
{props.label}
) }