import React, { forwardRef } from 'react'; import { useDarkMode } from '@leafygreen-ui/leafygreen-provider'; import { useTableContext } from '../TableContext'; import InternalRowBase from './InternalRowBase'; import { getRowWithoutRTStyles } from './Row.styles'; import { InternalRowBaseProps } from './Row.types'; /** * Renders basic array row data * * @internal */ const InternalRowWithoutRT = forwardRef< HTMLTableRowElement, InternalRowBaseProps >(({ children, className, ...rest }: InternalRowBaseProps, fwdRef) => { const { shouldAlternateRowColor } = useTableContext(); const { theme } = useDarkMode(); return ( {children} ); }); InternalRowWithoutRT.displayName = 'InternalRowWithoutRT'; export default InternalRowWithoutRT;