import React from "react" import { MagnifyingGlass } from "@medusajs/icons" import { LayoutComponentDefinition, LayoutContext, } from "@vibentec/component-map" export default function VtSearchInput({ nodes, context, }: { nodes: LayoutComponentDefinition context: LayoutContext }) { const props = nodes.config || {} const placeholder = props.placeholder ?? "Search" const shortcut = props.shortcut ?? "⌘K" return (