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/check.tsx Normal file
View File

@@ -0,0 +1,14 @@
import Svg, { Path, G, Defs, ClipPath,Rect } from 'react-native-svg'
export const CheckIcon = ({ className }: { className?: string }) => (
<Svg width="12" height="12" className={className} viewBox="0 0 12 12" fill="none">
<G clipPath="url(#clip0_3_4111)">
<Path d="M6 0C2.6926 0 0 2.69115 0 6C0 9.30884 2.69115 12 6 12C9.30739 12 12 9.30884 12 6C12 2.69115 9.30884 0 6 0ZM9.14645 4.70082L5.50701 8.34026C5.42436 8.42291 5.31561 8.46496 5.20686 8.46496H5.16916C5.06042 8.46496 4.95167 8.42291 4.86902 8.34026L2.85355 6.32479C2.68826 6.1595 2.68826 5.8898 2.85355 5.7245C3.01885 5.55921 3.28855 5.55921 3.45384 5.7245L5.18801 7.45723L8.54616 4.09908C8.71145 3.93378 8.98115 3.93378 9.14645 4.09908C9.31319 4.26583 9.31319 4.53407 9.14645 4.70082Z" fill="#CCCCCC"/>
</G>
<Defs>
<ClipPath id="clip0_3_4111">
<Rect width="12" height="12" fill="white"/>
</ClipPath>
</Defs>
</Svg>
);