import { View, TouchableOpacity, Image as NativeImage, Text, } from "react-native"; import React from "react"; import { Icon } from "@rneui/themed"; import { useTailwind } from "tailwind-rn"; import { useSafeAreaInsets } from "react-native-safe-area-context"; export default function NoticeItem({ leftIcon, hasLink }) { const tailwind = useTailwind(); const insets = useSafeAreaInsets(); return ( {/* 头像 */} {/* */} {leftIcon} {/* 内容 */} {/* 文本内容 */} 您的个人资料已审核通过。 {/* 链接跳转 */} {hasLink && ( {}} style={{ ...tailwind("rounded-xl p-2 flex flex-row items-center my-2"), backgroundColor: "#ffffff1a", }} > {/* */} {hasLink.text} {}}> )} {/* 时间 */} 11:00 ); }