UNPKG

@uiw/react-native

Version:
20 lines 537 B
import React from 'react'; import PropTypes from 'prop-types'; import { StyleSheet, Text } from 'react-native'; const styles = StyleSheet.create({ default: { marginBottom: 10, fontSize: 20, fontWeight: '500' } }); export default function H5(props) { return <Text {...props} style={[styles.default, props.style]}> {props.children} </Text>; } H5.propTypes = { children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node, PropTypes.string]), style: PropTypes.any }; H5.defaultProps = {};