UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

17 lines (16 loc) 566 B
import type { ListVariant } from './ListContext'; import type { StackProps as FlexProps } from '../flex/Stack'; import type { SkeletonShow } from '../Skeleton'; export type ListContainerProps = { id?: string; visibleCount?: number; variant?: ListVariant; separated?: boolean; skeleton?: SkeletonShow; disabled?: boolean; } & FlexProps; declare function ListContainer(props: ListContainerProps): import("react/jsx-runtime").JSX.Element; declare namespace ListContainer { var _supportsSpacingProps: boolean; } export default ListContainer;