+ {detail.label}
+ {detail.link != null && detail.link !== "" && (
+
+ No data found,
+ try changing the filters.
+
+ Available entries: {data?.totalCount ?? "0"} +
+ ) : ( + <>> + )} ++ {body} +
+ ); +}); +FormMessage.displayName = "FormMessage"; + +export { + useFormField, + Form, + FormItem, + FormLabel, + FormControl, + FormDescription, + FormMessage, + FormField, +}; diff --git a/packages/explorer/src/components/ui/input.tsx b/packages/explorer/src/components/ui/input.tsx new file mode 100644 index 000000000..644632d07 --- /dev/null +++ b/packages/explorer/src/components/ui/input.tsx @@ -0,0 +1,25 @@ +import * as React from "react"; + +import { cn } from "@/lib/utils"; + +export interface InputProps + extends React.InputHTMLAttributes