import {View} from 'react-native' import {atoms as a, useTheme, type ViewStyleProp} from '#/alf' import {IS_NATIVE, IS_WEB, IS_WEB_TOUCH_DEVICE} from '#/env' export function SubtleHover({ style, hover, web = true, native = false, }: ViewStyleProp & {hover: boolean; web?: boolean; native?: boolean}) { const t = useTheme() let opacity: number switch (t.name) { case 'dark': opacity = 0.4 break case 'dim': opacity = 0.45 break case 'light': opacity = 0.5 break } const el = ( ) if (IS_WEB && web) { return IS_WEB_TOUCH_DEVICE ? null : el } else if (IS_NATIVE && native) { return el } return null }