Lines Matching refs:forwardRef
1 import { forwardRef } from 'react';
4 export const P = forwardRef(({ style, ...props }, ref) => {
7 export const B = forwardRef(({ style, ...props }, ref) => {
10 export const S = forwardRef(({ style, ...props }, ref) => {
13 export const Del = forwardRef(({ style, ...props }, ref) => {
16 export const Strong = forwardRef(({ style, ...props }, ref) => {
19 export const I = forwardRef(({ style, ...props }, ref) => {
22 export const Q = forwardRef(({ style, ...props }, ref) => {
25 export const BlockQuote = forwardRef(({ style, ...props }, ref) => {
28 export const EM = forwardRef(({ style, ...props }, ref) => {
31 export const BR = forwardRef((props, ref) => {
34 export const Small = forwardRef(({ style, ...props }, ref) => {
37 export const Mark = forwardRef(({ style, ...props }, ref) => {
40 export const Code = forwardRef((props, ref) => {
43 export const Time = forwardRef(({ style, ...props }, ref) => {
46 export const Pre = forwardRef(({ style, ...props }, ref) => {