@abgov/react-components
Version:
Government of Alberta - UI components for React
18 lines (17 loc) • 450 B
TypeScript
import { JSX } from 'react';
interface WCProps {
heading?: React.ReactNode;
}
declare module "react" {
namespace JSX {
interface IntrinsicElements {
"goa-tab": WCProps & React.HTMLAttributes<HTMLElement>;
}
}
}
export interface GoabTabItemProps {
heading?: React.ReactNode;
children?: React.ReactNode;
}
export declare function GoabTab({ heading, children }: GoabTabItemProps): JSX.Element;
export {};