import { BorderRadius, FlexView, Text, useTheme } from '@reown/appkit-ui-react-native'; import { StyleSheet } from 'react-native'; export interface PreviewSendPillProps { text: string; children: React.ReactNode; } export function PreviewSendPill({ text, children }: PreviewSendPillProps) { const Theme = useTheme(); return ( {text} {children} ); } const styles = StyleSheet.create({ pill: { borderRadius: BorderRadius.full, borderWidth: StyleSheet.hairlineWidth } });