UNPKG

@utrecht/component-library-react

Version:

React component library bundle for the Municipality of Utrecht based on the NL Design System architecture

29 lines 1.57 kB
import { HTMLAttributes } from 'react'; export interface DataListProps extends HTMLAttributes<HTMLElement> { appearance?: string; } export declare const DataList: import("react").ForwardRefExoticComponent<DataListProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes<HTMLDListElement>>; export type DataListItemProps = HTMLAttributes<HTMLDivElement>; export declare const DataListItem: import("react").ForwardRefExoticComponent<DataListItemProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes<HTMLDivElement>>; export type DataListKeyProps = HTMLAttributes<HTMLElement>; export declare const DataListKey: import("react").ForwardRefExoticComponent<DataListKeyProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes<HTMLElement>>; export interface DataListValueProps extends HTMLAttributes<HTMLElement> { value?: number | string; emptyDescription?: string; multiline?: boolean; notranslate?: boolean; } export declare const DataListValue: import("react").ForwardRefExoticComponent<DataListValueProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes<HTMLElement>>; export type DataListActionsProps = HTMLAttributes<HTMLElement>; export declare const DataListActions: import("react").ForwardRefExoticComponent<DataListActionsProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes<HTMLElement>>; //# sourceMappingURL=DataList.d.ts.map