Lines Matching refs:ref
8 export const P = forwardRef(({ style, ...props }: TextProps, ref) => {
9 return createElement('p', { ...props, style: [styles.reset, style], ref });
12 export const B = forwardRef(({ style, ...props }: TextProps, ref) => {
13 return createElement('b', { ...props, style: [styles.reset, style], ref });
16 export const S = forwardRef(({ style, ...props }: TextProps, ref) => {
17 return createElement('s', { ...props, style: [styles.reset, style], ref });
20 export const Del = forwardRef(({ style, ...props }: TextProps, ref) => {
21 return createElement('del', { ...props, style: [styles.reset, style], ref });
24 export const Strong = forwardRef(({ style, ...props }: TextProps, ref) => {
25 return createElement('strong', { ...props, style: [styles.reset, style], ref });
28 export const I = forwardRef(({ style, ...props }: TextProps, ref) => {
29 return createElement('i', { ...props, style: [styles.reset, style], ref });
32 export const Q = forwardRef(({ style, ...props }: QuoteProps, ref) => {
33 return createElement('q', { ...props, style: [styles.reset, style], ref });
36 export const BlockQuote = forwardRef(({ style, ...props }: BlockQuoteProps, ref) => {
37 return createElement('blockquote', { ...props, style: [styles.reset, style], ref });
40 export const EM = forwardRef(({ style, ...props }: TextProps, ref) => {
41 return createElement('em', { ...props, style: [styles.reset, style], ref });
44 export const BR = forwardRef((props: TextProps, ref) => {
45 return createElement('br', { ...props, ref });
48 export const Small = forwardRef(({ style, ...props }: TextProps, ref) => {
49 return createElement('small', { ...props, style: [styles.reset, style], ref });
52 export const Mark = forwardRef(({ style, ...props }: TextProps, ref) => {
53 return createElement('mark', { ...props, style: [styles.reset, style], ref });
56 export const Code = forwardRef((props: TextProps, ref) => {
57 return createElement('code', { ...props, ref });
60 export const Time = forwardRef(({ style, ...props }: TimeProps, ref) => {
61 return createElement('time', { ...props, style: [styles.reset, style], ref });
64 export const Pre = forwardRef(({ style, ...props }: TextProps, ref) => {
65 return createElement('pre', { ...props, style: [styles.reset, style], ref });