@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
16 lines (15 loc) • 669 B
TypeScript
import React from 'react';
import { ScrollViewAllProps } from '../../fragments/scroll-view/ScrollView';
import type { SkeletonShow } from '../Skeleton';
import type { SpacingProps } from '../../shared/types';
export type ListScrollViewProps = {
children: React.ReactNode;
maxVisibleListItems?: number;
skeleton?: SkeletonShow;
disabled?: boolean;
} & Omit<React.HTMLAttributes<HTMLDivElement>, 'children'> & SpacingProps & ScrollViewAllProps;
declare function ListScrollView(props: ListScrollViewProps): import("react/jsx-runtime").JSX.Element;
declare namespace ListScrollView {
var _supportsSpacingProps: boolean;
}
export default ListScrollView;