Home
last modified time | relevance | path

Searched refs:forwardRef (Results 1 – 25 of 76) sorted by relevance

1234

/expo/packages/html-elements/build/elements/
H A D_Text.web.js1 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) => {
28 export const EM = forwardRef(({ style, ...props }, ref) => {
31 export const BR = forwardRef((props, ref) => {
[all …]
H A DTable.js1 import React, { forwardRef } from 'react';
7 export const Table = forwardRef((props, ref) => {
10 export const THead = forwardRef((props, ref) => {
13 export const TBody = forwardRef((props, ref) => {
16 export const TFoot = forwardRef((props, ref) => {
19 export const TH = forwardRef((props, ref) => {
22 export const TR = forwardRef((props, ref) => {
25 export const TD = forwardRef((props, ref) => {
28 export const Caption = forwardRef((props, ref) => {
H A DText.js1 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) => {
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) => {
[all …]
H A DRules.web.js1 import { forwardRef } from 'react';
3 export const HR = forwardRef((props, ref) => {
H A DLists.js1 import React, { forwardRef } from 'react';
6 return forwardRef((props, ref) => {
19 export const LI = forwardRef((props, ref) => {
H A DRules.js1 import React, { forwardRef } from 'react';
4 export const HR = forwardRef((props, ref) => {
H A DAnchor.js1 import React, { forwardRef } from 'react';
4 export const A = forwardRef(({ href, target, download, rel, ...props }, ref) => {
H A DTable.web.js1 import React, { forwardRef } from 'react';
4 return forwardRef((props, ref) => {
H A DLayout.js1 import React, { forwardRef } from 'react';
5 return forwardRef((props, ref) => {
H A D_Text.web.js.map1forwardRef } from 'react';\nimport { StyleSheet } from 'react-native';\nimport createElement from …
H A DTable.js.map1forwardRef } from 'react';\nimport { StyleSheet } from 'react-native';\n\nimport { em } from '../c…
H A DHeadings.js1 import React, { forwardRef } from 'react';
12 return forwardRef((props, ref) => {
H A DRules.web.js.map1forwardRef } from 'react';\nimport createElement from 'react-native-web/dist/exports/createElement…
H A DText.js.map1forwardRef } from 'react';\nimport { StyleSheet, Platform } from 'react-native';\n\nimport { Block…
/expo/packages/html-elements/src/elements/
H A D_Text.web.tsx1 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) => {
40 export const EM = forwardRef(({ style, ...props }: TextProps, ref) => {
44 export const BR = forwardRef((props: TextProps, ref) => {
[all …]
H A DTable.tsx1 import React, { ComponentType, forwardRef } from 'react';
9 export const Table = forwardRef((props: ViewProps, ref) => {
13 export const THead = forwardRef((props: ViewProps, ref) => {
17 export const TBody = forwardRef((props: ViewProps, ref) => {
21 export const TFoot = forwardRef((props: ViewProps, ref) => {
25 export const TH = forwardRef((props: TableTextProps, ref: any) => {
29 export const TR = forwardRef((props: ViewProps, ref) => {
33 export const TD = forwardRef((props: TableTextProps, ref: any) => {
37 export const Caption = forwardRef((props: TextProps, ref: any) => {
H A DText.tsx1 import React, { ComponentType, forwardRef } from 'react';
9 export const P = forwardRef(({ style, ...props }: TextProps, ref) => {
13 export const B = forwardRef(({ style, ...props }: TextProps, ref) => {
17 export const S = forwardRef(({ style, ...props }: TextProps, ref) => {
21 export const I = forwardRef(({ style, ...props }: TextProps, ref) => {
25 export const Q = forwardRef(({ children, cite, style, ...props }: QuoteProps, ref) => {
37 export const BR = forwardRef(({ style, ...props }: TextProps, ref) => {
41 export const Mark = forwardRef(({ style, ...props }: TextProps, ref) => {
45 export const Code = forwardRef(({ style, ...props }: TextProps, ref) => {
55 export const Pre = forwardRef((props: PreProps, ref: any) => {
[all …]
H A DRules.web.tsx1 import { ComponentType, forwardRef } from 'react';
6 export const HR = forwardRef((props: ViewProps, ref) => {
H A DLists.tsx1 import React, { ComponentType, forwardRef, PropsWithChildren } from 'react';
8 return forwardRef((props: ViewProps, ref) => {
28 export const LI = forwardRef((props: PropsWithChildren<LIProps>, ref: any) => {
H A DRules.tsx1 import React, { ComponentType, forwardRef } from 'react';
6 export const HR = forwardRef((props: ViewProps, ref) => {
H A DAnchor.tsx1 import React, { ComponentType, forwardRef } from 'react';
7 export const A = forwardRef(({ href, target, download, rel, ...props }: LinkProps, ref) => {
H A DLayout.tsx1 import React, { ComponentType, forwardRef } from 'react';
7 return forwardRef((props: ViewProps, ref) => {
H A DTable.web.tsx1 import React, { ComponentType, forwardRef } from 'react';
7 return forwardRef((props: ViewProps, ref) => {
/expo/docs/ui/components/Snippet/
H A DSnippetContent.tsx2 import { forwardRef, PropsWithChildren } from 'react';
10 export const SnippetContent = forwardRef<HTMLDivElement, SnippetContentProps>(
/expo/docs/ui/components/Layout/
H A DLayoutScroll.tsx3 import React, { forwardRef, HTMLAttributes, PropsWithChildren } from 'react';
18 export const LayoutScroll = forwardRef<HTMLDivElement, LayoutScrollProps>(

1234