Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Dec 16, 2024
1 parent 0363407 commit c8d89c4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/search/SearchBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function SearchBar({ value, placeholder, onChangeValue, isFetching }: Pro
const value = event?.target?.value || '';
onChangeValue(value);
};

return (
<div className="flex w-full items-center rounded-full bg-white p-1 transition-all duration-500">
<input
Expand Down Expand Up @@ -53,4 +53,5 @@ export function SearchBar({ value, placeholder, onChangeValue, isFetching }: Pro
</div>
);
}
const iconStyle = 'flex h-10 w-10 items-center justify-center rounded-full bg-pink-600 sm:h-12 sm:w-12';
const iconStyle =
'flex h-10 w-10 items-center justify-center rounded-full bg-pink-600 sm:h-12 sm:w-12';

0 comments on commit c8d89c4

Please sign in to comment.