import { FontAwesome5 } from "@expo/vector-icons"; import { FC } from "react"; import { Animated, Pressable } from "react-native"; export type ScrollToTopButtonProps = { bottom: number; fadeAnim: Animated.Value; onPress: () => void; }; const ScrollToTopButton: FC = ({ bottom, fadeAnim, onPress, }) => ( ); export default ScrollToTopButton;