Lines Matching refs:ref
9 export const Table = forwardRef((props: ViewProps, ref) => {
10 return <View {...props} ref={ref} />;
13 export const THead = forwardRef((props: ViewProps, ref) => {
14 return <View {...props} ref={ref} />;
17 export const TBody = forwardRef((props: ViewProps, ref) => {
18 return <View {...props} ref={ref} />;
21 export const TFoot = forwardRef((props: ViewProps, ref) => {
22 return <View {...props} ref={ref} />;
25 export const TH = forwardRef((props: TableTextProps, ref: any) => {
26 return <TableText {...props} style={[styles.th, props.style]} ref={ref} />;
29 export const TR = forwardRef((props: ViewProps, ref) => {
30 return <View {...props} style={[styles.tr, props.style]} ref={ref} />;
33 export const TD = forwardRef((props: TableTextProps, ref: any) => {
34 return <TableText {...props} style={[styles.td, props.style]} ref={ref} />;
37 export const Caption = forwardRef((props: TextProps, ref: any) => {
38 return <Text {...props} style={[styles.caption, props.style]} ref={ref} />;