diff --git a/native/bottom-sheets/bottom-sheet-handle.react.js b/native/bottom-sheets/bottom-sheet-handle.react.js --- a/native/bottom-sheets/bottom-sheet-handle.react.js +++ b/native/bottom-sheets/bottom-sheet-handle.react.js @@ -8,14 +8,19 @@ function BottomSheetHandle(): React.Node { const styles = useStyles(unboundStyles); - return ( - <> - - - - - + const bottomSheetHanlde = React.useMemo( + () => ( + <> + + + + + + ), + [styles.gap, styles.knobHandle, styles.knobHandleContainer], ); + + return bottomSheetHanlde; } const unboundStyles = {