import { AppText } from './AppText'; import { AppBox } from '../layout'; import { useAppTheme } from '~/view/theme'; type Props = { text: string; }; export const AppChip = ({ text }: Props) => { const { otherSizes } = useAppTheme(); return ( {text} ); };