Skip to content

Commit

Permalink
fix: searchBox className 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jikwan0327 committed Mar 7, 2023
1 parent dd4b4a1 commit 4e0f003
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/search/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ export const SearchBox = ({
return (
<_Wrapper className={className} disabled={disabled}>
<Search colorKey="gray5" size={28} className={className} />
<_Input value={value} onChange={onChange} disabled={disabled} />
<_Input
className={className}
value={value}
onChange={onChange}
disabled={disabled}
/>
</_Wrapper>
);
};
Expand Down

0 comments on commit 4e0f003

Please sign in to comment.