UNPKG

projex-ui-dev

Version:

Projex' user interface

8 lines (7 loc) 234 B
import React from 'react'; export type UserProfileWidgetProps = { user: any; avatar?: any; }; declare const UserProfileWidget: ({ user, avatar }: UserProfileWidgetProps) => React.JSX.Element; export default UserProfileWidget;