Home
last modified time | relevance | path

Searched refs:TableTextProps (Results 1 – 6 of 6) sorted by relevance

/expo/packages/html-elements/build/elements/
H A DTable.d.ts2 import { TableTextProps } from '../primitives/Table';
9 export declare const TH: React.ComponentType<TableTextProps>;
11 export declare const TD: React.ComponentType<TableTextProps>;
H A DTable.js.map1TableTextProps } from '../primitives/Table';\nimport Text, { TextProps } from '../primitives/Text'…
/expo/packages/html-elements/build/primitives/
H A DTable.d.ts4 export type TableTextProps = NativeTextProps & { alias
10 export declare const TableText: ComponentType<TableTextProps>;
H A DTable.js.map1TableTextProps = NativeTextProps & {\n /** @platform web */\n colSpan?: number | string;\n /** …
/expo/packages/html-elements/src/primitives/
H A DTable.ts7 export type TableTextProps = NativeTextProps & { alias
14 export const TableText = Text as ComponentType<TableTextProps>;
/expo/packages/html-elements/src/elements/
H A DTable.tsx5 import { TableText, TableTextProps } from '../primitives/Table';
25 export const TH = forwardRef((props: TableTextProps, ref: any) => {
27 }) as ComponentType<TableTextProps>;
33 export const TD = forwardRef((props: TableTextProps, ref: any) => {
35 }) as ComponentType<TableTextProps>;