@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
14 lines (13 loc) • 612 B
TypeScript
import type { FlexItemAllProps as FlexItemProps } from '../flex/Item';
import type { SkeletonShow } from '../Skeleton';
export type ItemFooterProps = FlexItemProps & {
/**
* When `true`, applies skeleton font styling to all child items inside the scroll view. Propagated via context so nested `List.Container` and items inherit it.
*/
skeleton?: SkeletonShow;
};
declare function ItemFooter({ className, skeleton, children, ...rest }: ItemFooterProps): import("react/jsx-runtime").JSX.Element;
declare namespace ItemFooter {
var _supportsSpacingProps: boolean;
}
export default ItemFooter;