// @ts-nocheck import React from 'react'; export function InputPrependText({ text, children }) { return (
{text}
); }