@abgov/react-components
Version:
Government of Alberta - UI components for React
23 lines (22 loc) • 635 B
TypeScript
import { ReactNode, JSX } from 'react';
interface WCProps {
maxcontentwidth?: string;
testid?: string;
url?: string;
}
declare module "react" {
namespace JSX {
interface IntrinsicElements {
"goa-app-footer": WCProps & React.HTMLAttributes<HTMLElement>;
}
}
}
export interface GoabAppFooterProps {
maxContentWidth?: string;
children?: ReactNode;
testId?: string;
url?: string;
}
export type FooterProps = GoabAppFooterProps;
export declare function GoabAppFooter({ maxContentWidth, children, testId, url, }: GoabAppFooterProps): JSX.Element;
export default GoabAppFooter;