UNPKG

@amsterdam/design-system-react

Version:

All React components from the Amsterdam Design System. Use it to compose pages in your website or application.

17 lines (16 loc) 711 B
/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; import type { ProgressListStepProps } from './ProgressListStep'; export type ProgressListSubstepProps = { /** The current progress state of the substep. */ status?: ProgressListStepProps['status']; } & PropsWithChildren<HTMLAttributes<HTMLElement>>; export declare const ProgressListSubstep: import("react").ForwardRefExoticComponent<{ /** The current progress state of the substep. */ status?: ProgressListStepProps["status"]; } & HTMLAttributes<HTMLElement> & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes<HTMLLIElement>>;