mod-arch-shared
Version:
Shared UI components and utilities for modular architecture micro-frontend projects
14 lines • 438 B
TypeScript
import * as React from 'react';
import { PopoverPosition } from '@patternfly/react-core';
type Props = {
buttonLabel?: string;
headerContent?: string;
leadText?: string;
isInline?: boolean;
contentTestId?: string;
linkTestId?: string;
popoverPosition?: PopoverPosition;
};
declare const WhosMyAdministrator: React.FC<Props>;
export default WhosMyAdministrator;
//# sourceMappingURL=WhosMyAdministrator.d.ts.map