Lines Matching refs:style
4 export const P = forwardRef(({ style, ...props }, ref) => { field
5 return createElement('p', { ...props, style: [styles.reset, style], ref });
7 export const B = forwardRef(({ style, ...props }, ref) => { field
8 return createElement('b', { ...props, style: [styles.reset, style], ref });
10 export const S = forwardRef(({ style, ...props }, ref) => { field
11 return createElement('s', { ...props, style: [styles.reset, style], ref });
13 export const Del = forwardRef(({ style, ...props }, ref) => { field
14 return createElement('del', { ...props, style: [styles.reset, style], ref });
16 export const Strong = forwardRef(({ style, ...props }, ref) => { field
17 return createElement('strong', { ...props, style: [styles.reset, style], ref });
19 export const I = forwardRef(({ style, ...props }, ref) => { field
20 return createElement('i', { ...props, style: [styles.reset, style], ref });
22 export const Q = forwardRef(({ style, ...props }, ref) => { field
23 return createElement('q', { ...props, style: [styles.reset, style], ref });
25 export const BlockQuote = forwardRef(({ style, ...props }, ref) => { field
26 return createElement('blockquote', { ...props, style: [styles.reset, style], ref });
28 export const EM = forwardRef(({ style, ...props }, ref) => { field
29 return createElement('em', { ...props, style: [styles.reset, style], ref });
34 export const Small = forwardRef(({ style, ...props }, ref) => { field
35 return createElement('small', { ...props, style: [styles.reset, style], ref });
37 export const Mark = forwardRef(({ style, ...props }, ref) => { field
38 return createElement('mark', { ...props, style: [styles.reset, style], ref });
43 export const Time = forwardRef(({ style, ...props }, ref) => { field
44 return createElement('time', { ...props, style: [styles.reset, style], ref });
46 export const Pre = forwardRef(({ style, ...props }, ref) => { field
47 return createElement('pre', { ...props, style: [styles.reset, style], ref });