import React, { FC } from "react"; import { Text, View } from "react-native"; import LottieView from "lottie-react-native"; import { useThemeColors } from "@/lib/theme"; import { useResponsive } from "@/lib/responsive"; type StationListLoadingStateProps = { width: number; message: string; }; export const StationListLoadingState: FC = ({ width, message, }) => { const { colors, fixed } = useThemeColors(); const { fontScale } = useResponsive(); return ( {message} ); };