@youngonesworks/ui 0.1.48 → 0.1.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -110066,13 +110066,13 @@ const ScrollToTop = ({ scrollToTopTitle }) => {
|
|
|
110066
110066
|
|
|
110067
110067
|
//#endregion
|
|
110068
110068
|
//#region src/components/searchInput/index.tsx
|
|
110069
|
-
const SearchInput = () => /* @__PURE__ */ jsx(TextInput, {
|
|
110070
|
-
|
|
110071
|
-
|
|
110072
|
-
|
|
110073
|
-
|
|
110074
|
-
|
|
110075
|
-
|
|
110069
|
+
const SearchInput = ({ placeholder, value, onChange, className, rightSection,...props }) => /* @__PURE__ */ jsx(TextInput, {
|
|
110070
|
+
placeholder,
|
|
110071
|
+
className: className || "w-full lg:w-auto lg:min-w-[23.75rem]",
|
|
110072
|
+
rightSection: rightSection || /* @__PURE__ */ jsx(Fragment$1, {}),
|
|
110073
|
+
value,
|
|
110074
|
+
onChange,
|
|
110075
|
+
...props
|
|
110076
110076
|
});
|
|
110077
110077
|
|
|
110078
110078
|
//#endregion
|