Red round user-x placeholder rendered instead of an avatar for deleted user accounts (statuses `DELETED` / `SELF_DELETED`). ## Key Components ### `DeletedUserAvatar` **Props (`DeletedUserAvatarProps`):** | Prop | Type | Description | |---|---|---| | `size` | `'sm' \| 'md' \| 'lg'` | Mirrors `SquareAvatar` size buckets (32 / 40 / 48px). Default `'md'`. | | `className` | `string` | Extra classes (e.g. `h-6 w-6` for the dropdown-option size). | | `accessibleLabel` | `string` | Accessible name; pass the user identity when known (e.g. "Deleted user: Jane Doe"). Defaults to "Deleted user". | ## Notes - A dedicated component — not a `SquareAvatar` prop — because `SquareAvatar`'s only fallback is text initials, and initials for a deleted account is exactly what the design replaces. - Styling: `bg-ods-error/20` circle + `text-ods-error` `UserXmarkIcon`. - Consumed by `AssigneeDropdown` and the board `TicketCardBody` via the `deleted` flag on their assignee shapes; app repos also use it directly for their own user cells.