@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
11 lines (10 loc) • 398 B
TypeScript
import React from "react";
import { OverridableComponent } from "../util/types";
export interface InternalHeaderTitleProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
/**
* Application title
*/
children: React.ReactNode;
}
export declare const InternalHeaderTitle: OverridableComponent<InternalHeaderTitleProps, HTMLAnchorElement>;
export default InternalHeaderTitle;