"use client"; import { TextInput } from "@homarr/ui"; import type { CommonWidgetInputProps } from "./common"; import { useWidgetInputTranslation } from "./common"; import { useFormContext } from "./form"; export const WidgetTextInput = ({ property, kind, options, }: CommonWidgetInputProps<"text">) => { const t = useWidgetInputTranslation(kind, property); const form = useFormContext(); return ( ); };