UNPKG

@abgov/react-components

Version:

Government of Alberta - UI components for React

23 lines (22 loc) 664 B
import { Margins, Spacing } from '@abgov/ui-components-common'; import { JSX } from 'react'; interface WCProps extends Margins { gap?: Spacing; minchildwidth: string; testid?: string; } declare module "react" { namespace JSX { interface IntrinsicElements { "goa-grid": WCProps & React.HTMLAttributes<HTMLElement>; } } } export interface GoabGridProps extends Margins { gap?: Spacing; minChildWidth: string; testId?: string; children?: React.ReactNode; } export declare function GoabGrid({ gap, minChildWidth, mt, mr, mb, ml, testId, children, }: GoabGridProps): JSX.Element; export default GoabGrid;