@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
12 lines (11 loc) • 522 B
TypeScript
import { type Props as FlexItemProps } from '../flex/Item';
import type { SkeletonShow } from '../Skeleton';
export type ItemFooterProps = FlexItemProps & {
/** If `true`, applies skeleton loading state. Inherits from parent List context when not set. */
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;