UNPKG

@abgov/react-components

Version:

Government of Alberta - UI components for React

25 lines (24 loc) 680 B
import { Margins } from '@abgov/ui-components-common'; import { ReactNode } from 'react'; interface WCProps extends Margins { heading: string; open?: string; maxwidth?: string; testid?: string; } declare module "react" { namespace JSX { interface IntrinsicElements { "goa-details": WCProps & React.HTMLAttributes<HTMLElement>; } } } export interface GoabDetailsProps extends Margins { heading: string; open?: boolean; maxWidth?: string; testId?: string; children: ReactNode; } export declare function GoabDetails(props: GoabDetailsProps): import("react/jsx-runtime").JSX.Element; export default GoabDetails;