Skip to content

Commit

Permalink
Merge pull request #5 from elenitaex5:hf/change-index
Browse files Browse the repository at this point in the history
feat: removing outline and changing main file
  • Loading branch information
elenitaex5 authored Oct 24, 2023
2 parents dc9043d + 2639e91 commit c2f42ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/TextAreaResizable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ export const TextAreaResizable = (props: TextAreaResizableProps) => {
}, [rows])

const disabledCursor = disabled ? { cursor: 'not-allowed' } : {}
const removingOutline = Platform.OS === 'web' ? { outlineWidth: 0 } : {}

return (
<TextInput
Expand All @@ -74,6 +75,7 @@ export const TextAreaResizable = (props: TextAreaResizableProps) => {
...(props.style as Object),
padding: 4,
minHeight,
...removingOutline,
...disabledCursor
}}
multiline={true}
Expand Down
File renamed without changes.

0 comments on commit c2f42ff

Please sign in to comment.