UserCell

Radix

A 2nd-order composition of Avatar + AvatarImage + AvatarFallback. Renders a compact user cell with avatar, name, optional meta text, and badge. Exported from the avatar subpath.

Data Displayavatarusercelltablelistprofile

Table column

import { UserCell } from '@primstack/ui/avatar'

<UserCell
  src="/avatar.jpg"
  name="Jane Doe"
  meta="jane@example.com"
/>

In a table row

import { UserCell } from '@primstack/ui'

<UserCell
  name="Alice Johnson"
  email="alice@example.com"
  avatarSrc="/alice.jpg"
  role="Admin"
/>

Related Components