Move to new Post components dir

This commit is contained in:
Eric Bailey
2025-06-13 16:20:12 -05:00
parent 6593006d8c
commit 08f0a5cc71
6 changed files with 23 additions and 13 deletions
@@ -4,11 +4,11 @@ import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {HITSLOP_10} from '#/lib/constants'
import {atoms as a, flatten, type TextStyleProp,useTheme} from '#/alf'
import {atoms as a, flatten, type TextStyleProp, useTheme} from '#/alf'
import {Button} from '#/components/Button'
import {Text} from '#/components/Typography'
export function ShowMore({
export function ShowMoreTextButton({
onPress: onPressProp,
style,
}: TextStyleProp & {onPress: () => void}) {
@@ -44,7 +44,8 @@ export function ShowMore({
textStyle,
{
color: t.palette.primary_500,
opacity: pressed || hovered ? 0.6 : 1,
opacity: pressed ? 0.6 : 1,
textDecorationLine: hovered ? 'underline' : undefined,
},
]}>
<Trans>Show More</Trans>