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