UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

12 lines (11 loc) 358 B
/** * HTML Element * */ import type { AllHTMLAttributes, Ref } from 'react'; import type { SpacingProps } from '../../shared/types'; export type DtProps = AllHTMLAttributes<HTMLDListElement>; declare function Dt({ ref, ...props }: DtProps & SpacingProps & { ref?: Ref<HTMLDListElement>; }): import("react/jsx-runtime").JSX.Element; export default Dt;