authentication component

This commit is contained in:
2025-06-23 12:11:36 +08:00
parent ba2dc1211f
commit 8d9f52b85c
15 changed files with 261 additions and 197 deletions

View File

@@ -0,0 +1,14 @@
// src/components/Spacing.tsx
import React from "react";
import { View } from "react-native";
interface SpacingProps {
width?: number;
height?: number;
}
const Spacing: React.FC<SpacingProps> = ({ width = 20, height = 20 }) => {
return <View style={{ height, width }} />;
};
export default Spacing;