transcriptor-web/bootstrap/ssr/assets/InputLabel-DhqxoV6M.js
2025-04-05 15:58:14 +02:00

19 lines
319 B
JavaScript

import { jsx } from "react/jsx-runtime";
function InputLabel({
value,
htmlFor,
children
}) {
return /* @__PURE__ */ jsx(
"label",
{
className: "block font-medium text-sm text-gray-700 dark:text-gray-300",
htmlFor,
children: value || children
}
);
}
export {
InputLabel as I
};