Files
documenso/packages/ui/primitives/recipient-role-icons.tsx
David Nguyen d7d0fca501 fix: wip
2025-01-31 14:09:02 +11:00

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" />,
};