import { View, StyleSheet, Animated } from "react-native";
function Skeleton({ style }: { style?: any }) {
return (
);
}
function CommentSkeleton() {
return (
);
}
function UserMentionSkeleton() {
return (
);
}
const styles = StyleSheet.create({
skeleton: {
backgroundColor: "#efefef",
borderRadius: 8,
width: "100%",
height: 16,
},
commentContainer: {
flexDirection: "row",
alignItems: "flex-start",
gap: 8,
width: "100%",
},
avatarSkeleton: {
height: 50,
width: 50,
borderRadius: 25,
},
textSkeletonContainer: {
flex: 1,
gap: 8,
},
textSkeleton: {
width: "100%",
height: 16,
borderRadius: 8,
},
mentionContainer: {
flexDirection: "row",
gap: 8,
width: "100%",
alignItems: "center",
},
mentionAvatarSkeleton: {
height: 35,
width: 35,
borderRadius: 17.5,
},
});
export { CommentSkeleton, UserMentionSkeleton, Skeleton };