Readd hitslop to post controls (#1461)
* Readd hitslop to post controls * Bigger hitslop on bigger controls
This commit is contained in:
@@ -6,6 +6,7 @@ import {useTheme} from 'lib/ThemeContext'
|
||||
import {Text} from '../text/Text'
|
||||
import {pluralize} from 'lib/strings/helpers'
|
||||
import {useStores} from 'state/index'
|
||||
import {HITSLOP_10, HITSLOP_20} from 'lib/constants'
|
||||
|
||||
interface Props {
|
||||
isReposted: boolean
|
||||
@@ -50,7 +51,8 @@ export const RepostButton = ({
|
||||
accessibilityLabel={`${
|
||||
isReposted ? 'Undo repost' : 'Repost'
|
||||
} (${repostCount} ${pluralize(repostCount || 0, 'repost')})`}
|
||||
accessibilityHint="">
|
||||
accessibilityHint=""
|
||||
hitSlop={big ? HITSLOP_20 : HITSLOP_10}>
|
||||
<RepostIcon
|
||||
style={
|
||||
isReposted
|
||||
|
||||
Reference in New Issue
Block a user