mirror of
https://github.com/pdfme/pdfme.git
synced 2026-06-16 02:09:10 -04:00
22 lines
639 B
JavaScript
22 lines
639 B
JavaScript
// Mock for lucide-react
|
|
module.exports = {
|
|
Plus: () => 'Plus',
|
|
Minus: () => 'Minus',
|
|
ChevronLeft: () => 'ChevronLeft',
|
|
ChevronRight: () => 'ChevronRight',
|
|
ChevronsLeft: () => 'ChevronsLeft',
|
|
ChevronsRight: () => 'ChevronsRight',
|
|
Ellipsis: () => 'Ellipsis',
|
|
MoveHorizontal: () => 'MoveHorizontal',
|
|
MoveVertical: () => 'MoveVertical',
|
|
X: () => 'X',
|
|
Menu: () => 'Menu',
|
|
GripVertical: () => 'GripVertical',
|
|
CircleAlert: () => 'CircleAlert',
|
|
Lock: () => 'Lock',
|
|
ArrowLeft: () => 'ArrowLeft',
|
|
ArrowRight: () => 'ArrowRight',
|
|
LoaderCircle: () => 'LoaderCircle',
|
|
// Add any other icons used in the codebase
|
|
};
|