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