@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
13 lines (12 loc) • 433 B
TypeScript
import React from "react";
/**
* Footer slot for actions in `FormSummary`.
*/
export interface FormSummaryFooterProps extends React.HTMLAttributes<HTMLDivElement> {
/**
* Should include `<FormSummary.EditLink>`.
*/
children: React.ReactNode;
}
export declare const FormSummaryFooter: React.ForwardRefExoticComponent<FormSummaryFooterProps & React.RefAttributes<HTMLDivElement>>;
export default FormSummaryFooter;