UNPKG

@ssa-ui-kit/widgets

Version:
9 lines (8 loc) 313 B
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;