UNPKG

@abgov/react-components

Version:

Government of Alberta - UI components for React

27 lines (26 loc) 898 B
import { GoabCircularProgressSize, GoabCircularProgressVariant } from '@abgov/ui-components-common'; interface WCProps { variant?: GoabCircularProgressVariant; size?: GoabCircularProgressSize; message?: string; visible?: string; progress?: number; testid?: string; } declare module "react" { namespace JSX { interface IntrinsicElements { "goa-circular-progress": WCProps & React.HTMLAttributes<HTMLElement>; } } } export interface GoabCircularProgressProps { variant?: GoabCircularProgressVariant; size?: GoabCircularProgressSize; message?: string; visible?: boolean; progress?: number; testId?: string; } export declare const GoabCircularProgress: ({ visible, message, progress, variant, size, testId, }: GoabCircularProgressProps) => import("react/jsx-runtime").JSX.Element; export default GoabCircularProgress;