Skip to content

Commit

Permalink
Fix bad behavior input native
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienMora committed Aug 27, 2024
1 parent ca4689f commit 43ce815
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react/components/input/Input.native.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -279,12 +279,12 @@ const Input = ({
inputIcon: {
position: 'absolute',
right: 10,
top: !value ? -33 : -38,
top: dynamicPlaceholder && !label && value ? -38 : -33,
},
inputIconLeft: {
position: 'absolute',
left: 10,
top: !dynamicPlaceholder && !value ? -33 : -38,
top: dynamicPlaceholder && !label && value ? -38 : -33,
},
text: {
zIndex: -1,
Expand Down

0 comments on commit 43ce815

Please sign in to comment.