Files
Stirling-PDF/frontend/src/core/tools/Sign.tsx
Reece Browne 30bcc38c04 Feature/v2/add text (#4951)
Refactor sign to separate out add text and add image functions. 
Implement add text as standalone tool
2025-11-24 13:37:35 +00:00

13 lines
334 B
TypeScript

import { createStampTool } from '@app/tools/stamp/createStampTool';
const Sign = createStampTool({
toolId: 'sign',
translationScope: 'sign',
allowedSignatureSources: ['canvas', 'image', 'text', 'saved'],
defaultSignatureSource: 'canvas',
defaultSignatureType: 'canvas',
enableApplyAction: true,
});
export default Sign;