Lines Matching refs:ref

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