@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
14 lines (13 loc) • 420 B
TypeScript
import React, { HTMLAttributes } from "react";
export interface InternalHeaderUserProps extends HTMLAttributes<HTMLDivElement> {
/**
* User name
*/
name: string;
/**
* User description
*/
description?: string;
}
export declare const InternalHeaderUser: React.ForwardRefExoticComponent<InternalHeaderUserProps & React.RefAttributes<HTMLDivElement>>;
export default InternalHeaderUser;