Lines Matching refs:ref
7 export const Table = forwardRef((props, ref) => {
8 return React.createElement(View, { ...props, ref: ref });
10 export const THead = forwardRef((props, ref) => {
11 return React.createElement(View, { ...props, ref: ref });
13 export const TBody = forwardRef((props, ref) => {
14 return React.createElement(View, { ...props, ref: ref });
16 export const TFoot = forwardRef((props, ref) => {
17 return React.createElement(View, { ...props, ref: ref });
19 export const TH = forwardRef((props, ref) => {
20 return React.createElement(TableText, { ...props, style: [styles.th, props.style], ref: ref });
22 export const TR = forwardRef((props, ref) => {
23 return React.createElement(View, { ...props, style: [styles.tr, props.style], ref: ref });
25 export const TD = forwardRef((props, ref) => {
26 return React.createElement(TableText, { ...props, style: [styles.td, props.style], ref: ref });
28 export const Caption = forwardRef((props, ref) => {
29 return React.createElement(Text, { ...props, style: [styles.caption, props.style], ref: ref });