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