@kit-data-manager/react-search-component
Version:
All-in-one component for rendering an elastic search UI for searching anything. Built-in support for visualizing related items in a graph and resolving unique identifiers.
9 lines • 850 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import * as React from "react";
import { cn } from "../../lib/utils";
const Input = React.forwardRef(({ className, type, ...props }, ref) => {
return (_jsx("input", { type: type, className: cn("rfs:flex rfs:h-10 rfs:w-full rfs:rounded-md rfs:border rfs:border-input rfs:bg-background rfs:px-3 rfs:py-2 rfs:text-base rfs:ring-offset-background rfs:file:border-0 rfs:file:bg-transparent rfs:file:text-sm rfs:file:font-medium rfs:file:text-foreground rfs:placeholder:text-muted-foreground rfs:focus-visible:outline-hidden rfs:focus-visible:ring-2 rfs:focus-visible:ring-ring rfs:focus-visible:ring-offset-2 rfs:disabled:cursor-not-allowed rfs:disabled:opacity-50 rfs:md:text-sm", className), ref: ref, ...props }));
});
Input.displayName = "Input";
export { Input };
//# sourceMappingURL=input.js.map