UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

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