Przeglądaj źródła

remove clear icon check for input

davitbejanyan 2 lat temu
rodzic
commit
9588e88300

+ 3 - 3
kafka-ui-react-app/src/components/common/Input/Input.tsx

@@ -16,7 +16,7 @@ export interface InputProps
   withError?: boolean;
   withError?: boolean;
   label?: React.ReactNode;
   label?: React.ReactNode;
   hint?: React.ReactNode;
   hint?: React.ReactNode;
-  icon?: React.ReactNode;
+  clearIcon?: React.ReactNode;
 
 
   // Some may only accept integer, like `Number of Partitions`
   // Some may only accept integer, like `Number of Partitions`
   // some may accept decimal
   // some may accept decimal
@@ -112,7 +112,7 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>((props, ref) => {
     withError = false,
     withError = false,
     label,
     label,
     hint,
     hint,
-    icon,
+    clearIcon,
     ...rest
     ...rest
   } = props;
   } = props;
 
 
@@ -187,7 +187,7 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>((props, ref) => {
           ref={ref}
           ref={ref}
           {...inputOptions}
           {...inputOptions}
         />
         />
-        {search && icon}
+        {clearIcon}
 
 
         {withError && isHookFormField && (
         {withError && isHookFormField && (
           <S.FormError>
           <S.FormError>

+ 1 - 1
kafka-ui-react-app/src/components/common/Search/Search.tsx

@@ -64,7 +64,7 @@ const Search: React.FC<SearchProps> = ({
       disabled={disabled}
       disabled={disabled}
       ref={ref}
       ref={ref}
       search
       search
-      icon={
+      clearIcon={
         <IconButtonWrapper onClick={clearSearchValue}>
         <IconButtonWrapper onClick={clearSearchValue}>
           <CloseIcon />
           <CloseIcon />
         </IconButtonWrapper>
         </IconButtonWrapper>