@youngonesworks/ui 0.1.47 → 0.1.50

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.
@@ -1 +1,5 @@
1
- export declare const SearchInput: () => import("react/jsx-runtime").JSX.Element;
1
+ interface SearchInputProps {
2
+ placeholder: string;
3
+ }
4
+ export declare const SearchInput: ({ placeholder }: SearchInputProps) => import("react/jsx-runtime").JSX.Element;
5
+ export {};
package/dist/index.cjs CHANGED
@@ -110064,7 +110064,8 @@ const ScrollToTop = ({ scrollToTopTitle }) => {
110064
110064
 
110065
110065
  //#endregion
110066
110066
  //#region src/components/searchInput/index.tsx
110067
- const SearchInput = () => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(TextInput, {
110067
+ const SearchInput = ({ placeholder }) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(TextInput, {
110068
+ placeholder,
110068
110069
  className: "w-full lg:w-auto lg:min-w-[23.75rem]",
110069
110070
  rightSection: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(IconSearch, {
110070
110071
  size: 20,