UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

12 lines (11 loc) 546 B
import React from 'react'; import type { DlAllProps } from '../../../../elements/Dl'; import type { ValueProps } from '../../types'; export type ValueSummaryListProps = Omit<DlAllProps, 'label' | 'labelSrOnly' | 'children'> & { children: React.ReactNode; transformLabel?: ValueProps['transformLabel']; inheritVisibility?: ValueProps['inheritVisibility']; inheritLabel?: ValueProps['inheritLabel']; }; declare function SummaryList(props: ValueSummaryListProps): import("react/jsx-runtime").JSX.Element; export default SummaryList;