UNPKG

@uiw/react-native

Version:
18 lines 511 B
import React from 'react'; import PropTypes from 'prop-types'; import { StyleSheet, Text } from 'react-native'; const styles = StyleSheet.create({ default: { textDecorationLine: 'line-through' } }); export default function S(props) { return <Text {...props} style={[styles.default, props.style]}> {props.children} </Text>; } S.propTypes = { children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node, PropTypes.string]), style: PropTypes.any }; S.defaultProps = {};