Readd hitslop to post controls (#1461)
* Readd hitslop to post controls * Bigger hitslop on bigger controls
This commit is contained in:
parent
e3de91788e
commit
763a50692f
2 changed files with 8 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue