bigblocks
Version:
Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React
34 lines • 897 B
TypeScript
export interface MasterKeyBadgeProps {
/**
* Custom tooltip message
*/
tooltip?: string;
/**
* Whether to show the lock icon
*/
showIcon?: boolean;
/**
* Badge text
*/
text?: string;
/**
* Badge variant
*/
variant?: "default" | "secondary" | "destructive" | "outline";
/**
* Additional CSS classes
*/
className?: string;
}
/**
* MasterKeyBadge - Visual indicator for features that require master key access
*
* @example
* ```tsx
* <MasterKeyBadge />
* <MasterKeyBadge tooltip="This feature requires signing in with your master backup" />
* <MasterKeyBadge text="Master Only" color="purple" />
* ```
*/
export declare function MasterKeyBadge({ tooltip, showIcon, text, variant, className, }: MasterKeyBadgeProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=MasterKeyBadge.d.ts.map