@abgov/react-components
Version:
Government of Alberta - UI components for React
23 lines (22 loc) • 665 B
TypeScript
import { ReactNode } from 'react';
import { GoabIconType } from '@abgov/ui-components-common';
interface WCProps {
heading: string;
leadingicon?: GoabIconType;
testid?: string;
}
export interface GoabAppHeaderMenuProps {
heading: string;
leadingIcon?: GoabIconType;
testId?: string;
children?: ReactNode;
}
declare module "react" {
namespace JSX {
interface IntrinsicElements {
"goa-app-header-menu": WCProps & React.HTMLAttributes<HTMLElement>;
}
}
}
export declare function GoabAppHeaderMenu(props: GoabAppHeaderMenuProps): import("react/jsx-runtime").JSX.Element;
export default GoabAppHeaderMenu;