Skip to content

Commit

Permalink
style(Search): prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
YossiSaadi committed Apr 17, 2024
1 parent a04f470 commit b304a9d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/core/src/components/BaseInput/BaseInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,13 @@ const BaseInput = forwardRef(
return (
<div className={wrapperClassNames} role={wrapperRole}>
{renderLeft}
<input {...props} ref={ref} className={cx(styles.input, inputClassName)} aria-invalid={error} role={inputRole} />
<input
{...props}
ref={ref}
className={cx(styles.input, inputClassName)}
aria-invalid={error}
role={inputRole}
/>
{renderRight}
</div>
);
Expand Down

0 comments on commit b304a9d

Please sign in to comment.