import { forwardRef } from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Table/table-scrollable'; export interface InnerScrollContainerProps extends React.HTMLProps { /** Content rendered inside the inner scroll container */ children?: React.ReactNode; /** Additional classes added to the container */ className?: string; /** @hide Forwarded ref */ innerRef?: React.Ref; } const InnerScrollContainerBase: React.FunctionComponent = ({ children, className, innerRef, ...props }: InnerScrollContainerProps) => (
{children}
); export const InnerScrollContainer = forwardRef((props: InnerScrollContainerProps, ref: React.Ref) => ( )); InnerScrollContainer.displayName = 'InnerScrollContainer';