import React from 'react'; import { Platform } from 'react-native'; interface HitSlopProps { top?: number; right?: number; bottom?: number; left?: number; children: React.ReactNode; } export const HitSlop: React.FC = ({ top = 10, right = 10, bottom = 10, left = 10, children, }) => { if (Platform.OS !== 'web') { return children; } return (
{children}
); };