authentication component
This commit is contained in:
14
components/_ShareComponent/Spacing.tsx
Normal file
14
components/_ShareComponent/Spacing.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user