Skip to content

Commit

Permalink
fix: remove basic width
Browse files Browse the repository at this point in the history
  • Loading branch information
huhuanming committed Oct 17, 2023
1 parent 26aa49a commit c4ea8e5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/components/src/SearchBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,15 @@ export function SearchBar({
placeholder={placeholder}
onFocus={handleOnFocus}
onBlur={handleOnBlur}
borderRightWidth={0}
onSubmitEditing={onSubmitEditing}
focusStyle={{ outlineStyle: 'none' }}
onChangeText={onChange}
h={height ?? '$7'}
returnKeyType="search"
// remove basic border width
borderWidth={0}
// remove border on right
borderRightWidth={0}
/>
<AnimatePresence>
{value?.length ? (
Expand Down

0 comments on commit c4ea8e5

Please sign in to comment.