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="[email protected]"
/>

In a table row

import { UserCell } from '@primstack/ui'

<UserCell
  name="Alice Johnson"
  email="[email protected]"
  avatarSrc="/alice.jpg"
  role="Admin"
/>

Related Components