Lines Matching refs:forwardRef
1 import React, { forwardRef } from 'react';
6 export const P = forwardRef(({ style, ...props }, ref) => {
9 export const B = forwardRef(({ style, ...props }, ref) => {
12 export const S = forwardRef(({ style, ...props }, ref) => {
15 export const I = forwardRef(({ style, ...props }, ref) => {
18 export const Q = forwardRef(({ children, cite, style, ...props }, ref) => {
24 export const BlockQuote = forwardRef(({ style, cite, ...props }, ref) => {
27 export const BR = forwardRef(({ style, ...props }, ref) => {
30 export const Mark = forwardRef(({ style, ...props }, ref) => {
33 export const Code = forwardRef(({ style, ...props }, ref) => {
39 export const Pre = forwardRef((props, ref) => {
46 export const Time = forwardRef(({ dateTime, ...props }, ref) => {