import { AppBox } from '../layout'; import { AppText } from '../text'; import { useAppTheme } from '~/view/theme'; import { PoppinsRegular } from '~/view/theme/fonts'; type Props = { text: string; color?: string; }; export const AppBadge = ({ text, color }: Props) => { const { otherSizes, colors } = useAppTheme(); return ( {text} ); };