import React from 'react'; import { View, StyleSheet } from 'react-native'; import { useTheme } from '~/features/theme/ThemeProvider'; import { getSkeletonColor, skeletonBase, skeletonText, skeletonBox, skeletonRow, skeletonSpacing, } from '../utils/skeletonStyles'; import { SkeletonAnimation } from '../utils/SkeletonAnimation'; export const MemoMetadataSkeleton: React.FC = () => { const { colors, isDark } = useTheme(); const skeletonColor = getSkeletonColor(isDark, colors); return ( ); }; const styles = StyleSheet.create({ container: { paddingHorizontal: 20, // Same as memo page marginBottom: 24, // Add proper spacing }, dateRow: { marginBottom: skeletonSpacing.sm, }, dateText: { width: 150, }, tagsRow: { flexWrap: 'wrap', gap: 8, }, tag: { borderRadius: 12, }, });