@ssa-ui-kit/widgets
Version:
SSA UI Kit widgets
9 lines (8 loc) • 313 B
TypeScript
import { User } from './types';
interface UserCardProps {
user: User | null;
/** Shows a border around the avatar. @default false */
avatarBorder?: boolean;
}
declare const UserCard: ({ user, avatarBorder }: UserCardProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export default UserCard;