Denys Konovalov
13dde42eb0
- [x] Update auf Static CMS v2.0 - [x] aktualisierte Shortcodes (schließt #225) - [x] aktualisierte Previews (schließt #181) - Ordnerunterstützung - [x] vervollständigte Seiten - [x] Aufräumarbeiten Reviewed-on: https://git.cantorgymnasium.de/gcg/gcg-website/pulls/226
22 lines
593 B
JavaScript
22 lines
593 B
JavaScript
const TextField = ({ label, value, onChange }) =>
|
|
h(
|
|
"span",
|
|
{ key: "text-" + label, className: "flex flex-col w-full" },
|
|
h(
|
|
"label",
|
|
{
|
|
className:
|
|
"w-full flex text-xs font-bold dark:font-semibold group-focus-within/active:text-blue-500 group-hover/active:text-blue-500 cursor-text text-slate-500 dark:text-slate-400 px-3 pt-3",
|
|
},
|
|
label
|
|
),
|
|
h("input", {
|
|
className:
|
|
"MuiInout-Input w-full h-6 px-3 bg-transparent outline-none text-sm font-medium text-gray-900 dark:text-gray-100 cursor-default",
|
|
value,
|
|
onChange,
|
|
})
|
|
);
|
|
|
|
export default TextField;
|