BlueWallet/components/BlueCard.tsx
2026-05-18 12:56:12 +01:00

15 lines
296 B
TypeScript

import React from 'react';
import { StyleSheet, View, ViewProps } from 'react-native';
const BlueCard: React.FC<ViewProps> = props => {
return <View {...props} style={styles.blueCard} />;
};
const styles = StyleSheet.create({
blueCard: {
padding: 20,
},
});
export default BlueCard;