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