@elacity-js/uikit
Version:
React / Material UI Design kit for Elacity project
17 lines (16 loc) • 424 B
TypeScript
import React from 'react';
interface Props {
noMenu?: boolean;
size?: number;
label?: string;
altLabel?: string;
}
declare function AccountPopover({ label, altLabel, noMenu, size, children }: React.PropsWithChildren<Props>): JSX.Element;
declare namespace AccountPopover {
var defaultProps: {
size: number;
label: string;
altLabel: string;
};
}
export default AccountPopover;