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