@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
17 lines (16 loc) • 540 B
TypeScript
import { ListVariant } from './ListContext';
import { Props as FlexProps } from '../flex/Container';
import type { SkeletonShow } from '../Skeleton';
export type ItemContentProps = {
id?: string;
variant?: ListVariant;
selected?: boolean;
pending?: boolean;
disabled?: boolean;
skeleton?: SkeletonShow;
} & FlexProps;
declare function ItemContent(props: ItemContentProps): import("react/jsx-runtime").JSX.Element;
declare namespace ItemContent {
var _supportsSpacingProps: boolean;
}
export default ItemContent;