make trending buttons pressable scale (#7160)

This commit is contained in:
Samuel Newman
2024-12-18 19:48:24 +00:00
committed by GitHub
parent e7b015f53f
commit 4097fe07c5
+7 -2
View File
@@ -4,13 +4,14 @@ import {AtUri} from '@atproto/api'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {PressableScale} from '#/lib/custom-animations/PressableScale'
// import {makeProfileLink} from '#/lib/routes/links'
// import {feedUriToHref} from '#/lib/strings/url-helpers'
// import {Hashtag_Stroke2_Corner0_Rounded as Hashtag} from '#/components/icons/Hashtag'
// import {CloseQuote_Filled_Stroke2_Corner0_Rounded as Quote} from '#/components/icons/Quote'
// import {UserAvatar} from '#/view/com/util/UserAvatar'
import type {TrendingTopic} from '#/state/queries/trending/useTrendingTopics'
import {atoms as a, useTheme, ViewStyleProp} from '#/alf'
import {atoms as a, native, useTheme, ViewStyleProp} from '#/alf'
import {Link as InternalLink, LinkProps} from '#/components/Link'
import {Text} from '#/components/Typography'
@@ -138,7 +139,11 @@ export function TrendingTopicLink({
const topic = useTopic(raw)
return (
<InternalLink label={topic.label} to={topic.url} {...rest}>
<InternalLink
label={topic.label}
to={topic.url}
PressableComponent={native(PressableScale)}
{...rest}>
{children}
</InternalLink>
)