168675f3eSEvan Baconimport { forwardRef } from 'react';
2*3ee10587SEvan Baconimport { StyleSheet } from 'react-native';
3*3ee10587SEvan Baconimport createElement from 'react-native-web/dist/exports/createElement';
468675f3eSEvan Baconexport const P = forwardRef(({ style, ...props }, ref) => {
568675f3eSEvan Bacon    return createElement('p', { ...props, style: [styles.reset, style], ref });
668675f3eSEvan Bacon});
768675f3eSEvan Baconexport const B = forwardRef(({ style, ...props }, ref) => {
868675f3eSEvan Bacon    return createElement('b', { ...props, style: [styles.reset, style], ref });
968675f3eSEvan Bacon});
1068675f3eSEvan Baconexport const S = forwardRef(({ style, ...props }, ref) => {
1168675f3eSEvan Bacon    return createElement('s', { ...props, style: [styles.reset, style], ref });
1268675f3eSEvan Bacon});
1368675f3eSEvan Baconexport const Del = forwardRef(({ style, ...props }, ref) => {
1468675f3eSEvan Bacon    return createElement('del', { ...props, style: [styles.reset, style], ref });
1568675f3eSEvan Bacon});
1668675f3eSEvan Baconexport const Strong = forwardRef(({ style, ...props }, ref) => {
1768675f3eSEvan Bacon    return createElement('strong', { ...props, style: [styles.reset, style], ref });
1868675f3eSEvan Bacon});
1968675f3eSEvan Baconexport const I = forwardRef(({ style, ...props }, ref) => {
2068675f3eSEvan Bacon    return createElement('i', { ...props, style: [styles.reset, style], ref });
2168675f3eSEvan Bacon});
2268675f3eSEvan Baconexport const Q = forwardRef(({ style, ...props }, ref) => {
2368675f3eSEvan Bacon    return createElement('q', { ...props, style: [styles.reset, style], ref });
2468675f3eSEvan Bacon});
2568675f3eSEvan Baconexport const BlockQuote = forwardRef(({ style, ...props }, ref) => {
2668675f3eSEvan Bacon    return createElement('blockquote', { ...props, style: [styles.reset, style], ref });
2768675f3eSEvan Bacon});
2868675f3eSEvan Baconexport const EM = forwardRef(({ style, ...props }, ref) => {
2968675f3eSEvan Bacon    return createElement('em', { ...props, style: [styles.reset, style], ref });
3068675f3eSEvan Bacon});
3168675f3eSEvan Baconexport const BR = forwardRef((props, ref) => {
3268675f3eSEvan Bacon    return createElement('br', { ...props, ref });
3368675f3eSEvan Bacon});
3468675f3eSEvan Baconexport const Small = forwardRef(({ style, ...props }, ref) => {
3568675f3eSEvan Bacon    return createElement('small', { ...props, style: [styles.reset, style], ref });
3668675f3eSEvan Bacon});
3768675f3eSEvan Baconexport const Mark = forwardRef(({ style, ...props }, ref) => {
3868675f3eSEvan Bacon    return createElement('mark', { ...props, style: [styles.reset, style], ref });
3968675f3eSEvan Bacon});
4068675f3eSEvan Baconexport const Code = forwardRef((props, ref) => {
4168675f3eSEvan Bacon    return createElement('code', { ...props, ref });
4268675f3eSEvan Bacon});
4368675f3eSEvan Baconexport const Time = forwardRef(({ style, ...props }, ref) => {
4468675f3eSEvan Bacon    return createElement('time', { ...props, style: [styles.reset, style], ref });
4568675f3eSEvan Bacon});
4668675f3eSEvan Baconexport const Pre = forwardRef(({ style, ...props }, ref) => {
47b3e65a7aSJames Ide    return createElement('pre', { ...props, style: [styles.reset, style], ref });
4868675f3eSEvan Bacon});
4968675f3eSEvan Baconconst styles = StyleSheet.create({
5068675f3eSEvan Bacon    reset: {
5168675f3eSEvan Bacon        fontFamily: 'System',
5268675f3eSEvan Bacon        color: '#000',
5368675f3eSEvan Bacon        border: '0 solid black',
5468675f3eSEvan Bacon        boxSizing: 'border-box',
5568675f3eSEvan Bacon        // @ts-ignore: inline is not supported
5668675f3eSEvan Bacon        display: 'inline',
5768675f3eSEvan Bacon        margin: 0,
5868675f3eSEvan Bacon        padding: 0,
5968675f3eSEvan Bacon        whiteSpace: 'pre-wrap',
6068675f3eSEvan Bacon        wordWrap: 'break-word',
6168675f3eSEvan Bacon    },
6268675f3eSEvan Bacon});
6368675f3eSEvan Bacon//# sourceMappingURL=_Text.web.js.map