react-native-awesome-components
Version:
Awesome, Lightweight UI Components for React Native
22 lines (18 loc) • 390 B
JavaScript
import React from 'react';
import { View } from 'react-native';
import styles from './styles';
import PropTypes from 'prop-types';
const Card = (props) => {
return (
<View style={[styles.cardView, props.style]}>
{props.children}
</View>
);
};
Card.propTypes = {
style: PropTypes.object,
};
Card.defaultProps = {
style: {},
};
export { Card };