UNPKG

@blocklet/ui-react

Version:

Some useful front-end web components that can be used in Blocklets.

14 lines (13 loc) 529 B
import { BoxProps } from '@mui/material'; import { User } from '../../../@types'; export default function UserBasicInfo({ user, isMyself, showFullDid, switchPassport, switchProfile, isMobile, onlyProfile, refreshProfile, ...rest }: { user: User; isMyself?: boolean; showFullDid?: boolean; switchPassport: () => void; switchProfile: () => void; size?: number; isMobile?: boolean; onlyProfile?: boolean; refreshProfile: () => void; } & BoxProps): import("react/jsx-runtime").JSX.Element | null;