import { Text } from "@/components/common/Text"; import { View, type ViewProps } from "react-native"; interface Props extends ViewProps { index: number; } export const VerticalSkeleton: React.FC = ({ index, ...props }) => { return ( ); };