import { Input, Text } from "@medusajs/ui" import { ComponentProps, ElementRef, forwardRef } from "react" export const HandleInput = forwardRef< ElementRef, ComponentProps >((props, ref) => { return (
/
) }) HandleInput.displayName = "HandleInput"