mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 00:32:43 +10:00
11 lines
357 B
TypeScript
11 lines
357 B
TypeScript
import { BadgeCheck, Copy, Eye, PencilLine } from 'lucide-react';
|
|
|
|
import type { RecipientRole } from '.prisma/client';
|
|
|
|
export const ROLE_ICONS: Record<RecipientRole, JSX.Element> = {
|
|
SIGNER: <PencilLine className="h-4 w-4" />,
|
|
APPROVER: <BadgeCheck className="h-4 w-4" />,
|
|
CC: <Copy className="h-4 w-4" />,
|
|
VIEWER: <Eye className="h-4 w-4" />,
|
|
};
|