@abgov/react-components
Version:
Government of Alberta - UI components for React
19 lines (18 loc) • 639 B
TypeScript
import { ReactNode } from 'react';
import { Margins } from '@abgov/ui-components-common';
interface WCProps extends Margins {
heading?: string;
}
declare module "react" {
namespace JSX {
interface IntrinsicElements {
"goa-public-form-task-list": WCProps & React.HTMLAttributes<HTMLElement>;
}
}
}
interface GoabPublicFormTaskListProps extends Margins {
heading?: string;
children: ReactNode;
}
export declare function GoabPublicFormTaskList({ heading, children, mt, mr, mb, ml, }: GoabPublicFormTaskListProps): import("react/jsx-runtime").JSX.Element;
export default GoabPublicFormTaskList;