synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
19 lines • 742 B
TypeScript
import { ButtonProps } from '@mui/material';
import { ReactNode } from 'react';
export type AccountLevelBadgeType = 'certified' | 'validated' | 'enabledMFA';
type AccountLevelBadgeConfig = {
label: string;
description: string;
tooltipText: string;
icon: ReactNode;
linkHref: string;
buttonNode?: ReactNode;
};
export declare const accountLevelBadgeConfig: Record<AccountLevelBadgeType, AccountLevelBadgeConfig>;
export type AccountLevelBadgeProps = {
badgeType: AccountLevelBadgeType;
buttonProps?: ButtonProps;
};
export declare function AccountLevelBadge({ badgeType, buttonProps, }: AccountLevelBadgeProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=AccountLevelBadge.d.ts.map