mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 08:42:12 +10:00
8 lines
255 B
TypeScript
8 lines
255 B
TypeScript
import { Recipient } from '@documenso/prisma/client';
|
|
|
|
import { initials } from './recipient-initials';
|
|
|
|
export const recipientAvatarFallback = (recipient: Recipient) => {
|
|
return initials(recipient.name) || recipient.email.slice(0, 1).toUpperCase();
|
|
};
|