diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-17 12:35:47 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-17 12:35:47 -0600 |
commit | 798622b307220a8634a911afabea3864a812aa64 (patch) | |
tree | 730f0d48923feb72a60668c994d2d5628ea0e2f5 /src/view/com/util/LoadingPlaceholder.tsx | |
parent | ee8d311795954f6bece81b9cbaebdb79eee20d0d (diff) | |
download | voidsky-798622b307220a8634a911afabea3864a812aa64.tar.zst |
Refer to upvotes as 'likes' in the UI (will change in the protocol soon)
Diffstat (limited to 'src/view/com/util/LoadingPlaceholder.tsx')
-rw-r--r-- | src/view/com/util/LoadingPlaceholder.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/util/LoadingPlaceholder.tsx b/src/view/com/util/LoadingPlaceholder.tsx index 76e3c495d..587e2928a 100644 --- a/src/view/com/util/LoadingPlaceholder.tsx +++ b/src/view/com/util/LoadingPlaceholder.tsx @@ -1,7 +1,7 @@ import React from 'react' import {StyleSheet, StyleProp, View, ViewStyle} from 'react-native' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' -import {UpIcon} from '../../lib/icons' +import {HeartIcon} from '../../lib/icons' import {s} from '../../lib/styles' import {useTheme} from '../../lib/ThemeContext' import {usePalette} from '../../lib/hooks/usePalette' @@ -70,7 +70,7 @@ export function PostLoadingPlaceholder({ /> </View> <View style={s.flex1}> - <UpIcon + <HeartIcon style={{color: theme.palette.default.icon}} size={17} strokeWidth={1.7} |