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