Initial commit: expo-popcore-app

This commit is contained in:
imeepos
2025-12-25 16:25:55 +08:00
commit 02d0c807cd
160 changed files with 39560 additions and 0 deletions

14
components/icon/plus.tsx Normal file
View File

@@ -0,0 +1,14 @@
import Svg, { Path } from 'react-native-svg';
export const PlusIcon = () => (
<Svg width="16" height="16" viewBox="0 0 16 16" fill="none">
<Path
d="M8 3V13M3 8H13"
stroke="#FFFFFF"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);