mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 00:32:43 +10:00
10 lines
356 B
TypeScript
10 lines
356 B
TypeScript
import type { RecipientRole } from '@prisma/client';
|
|
import { BadgeCheck, Copy, Eye, PencilLine } from 'lucide-react';
|
|
|
|
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" />,
|
|
};
|