1import { forwardRef } from 'react';
2import { createElement, StyleSheet } from 'react-native';
3export const P = forwardRef(({ style, ...props }, ref) => {
4    return createElement('p', { ...props, style: [styles.reset, style], ref });
5});
6export const B = forwardRef(({ style, ...props }, ref) => {
7    return createElement('b', { ...props, style: [styles.reset, style], ref });
8});
9export const S = forwardRef(({ style, ...props }, ref) => {
10    return createElement('s', { ...props, style: [styles.reset, style], ref });
11});
12export const Del = forwardRef(({ style, ...props }, ref) => {
13    return createElement('del', { ...props, style: [styles.reset, style], ref });
14});
15export const Strong = forwardRef(({ style, ...props }, ref) => {
16    return createElement('strong', { ...props, style: [styles.reset, style], ref });
17});
18export const I = forwardRef(({ style, ...props }, ref) => {
19    return createElement('i', { ...props, style: [styles.reset, style], ref });
20});
21export const Q = forwardRef(({ style, ...props }, ref) => {
22    return createElement('q', { ...props, style: [styles.reset, style], ref });
23});
24export const BlockQuote = forwardRef(({ style, ...props }, ref) => {
25    return createElement('blockquote', { ...props, style: [styles.reset, style], ref });
26});
27export const EM = forwardRef(({ style, ...props }, ref) => {
28    return createElement('em', { ...props, style: [styles.reset, style], ref });
29});
30export const BR = forwardRef((props, ref) => {
31    return createElement('br', { ...props, ref });
32});
33export const Small = forwardRef(({ style, ...props }, ref) => {
34    return createElement('small', { ...props, style: [styles.reset, style], ref });
35});
36export const Mark = forwardRef(({ style, ...props }, ref) => {
37    return createElement('mark', { ...props, style: [styles.reset, style], ref });
38});
39export const Code = forwardRef((props, ref) => {
40    return createElement('code', { ...props, ref });
41});
42export const Time = forwardRef(({ style, ...props }, ref) => {
43    return createElement('time', { ...props, style: [styles.reset, style], ref });
44});
45export const Pre = forwardRef(({ style, ...props }, ref) => {
46    return createElement('pre', { ...props, style: [styles.reset, style], ref });
47});
48const styles = StyleSheet.create({
49    reset: {
50        fontFamily: 'System',
51        color: '#000',
52        border: '0 solid black',
53        boxSizing: 'border-box',
54        // @ts-ignore: inline is not supported
55        display: 'inline',
56        margin: 0,
57        padding: 0,
58        whiteSpace: 'pre-wrap',
59        wordWrap: 'break-word',
60    },
61});
62//# sourceMappingURL=_Text.web.js.map