Lines Matching refs:forwardRef
1 import { ComponentType, forwardRef } from 'react';
8 export const P = forwardRef(({ style, ...props }: TextProps, ref) => {
12 export const B = forwardRef(({ style, ...props }: TextProps, ref) => {
16 export const S = forwardRef(({ style, ...props }: TextProps, ref) => {
20 export const Del = forwardRef(({ style, ...props }: TextProps, ref) => {
24 export const Strong = forwardRef(({ style, ...props }: TextProps, ref) => {
28 export const I = forwardRef(({ style, ...props }: TextProps, ref) => {
32 export const Q = forwardRef(({ style, ...props }: QuoteProps, ref) => {
36 export const BlockQuote = forwardRef(({ style, ...props }: BlockQuoteProps, ref) => {
40 export const EM = forwardRef(({ style, ...props }: TextProps, ref) => {
44 export const BR = forwardRef((props: TextProps, ref) => {
48 export const Small = forwardRef(({ style, ...props }: TextProps, ref) => {
52 export const Mark = forwardRef(({ style, ...props }: TextProps, ref) => {
56 export const Code = forwardRef((props: TextProps, ref) => {
60 export const Time = forwardRef(({ style, ...props }: TimeProps, ref) => {
64 export const Pre = forwardRef(({ style, ...props }: TextProps, ref) => {