UNPKG

@devfamily/admiral

Version:

Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.

8 lines (7 loc) 222 B
import React from 'react'; import { UserIdentity } from '../../auth/interfaces'; declare type UserCardProps = UserIdentity & { collapsed?: boolean; }; export declare const UserCard: React.FC<UserCardProps>; export {};