UNPKG

@kintobrasil/kinto-brasil-checklist-sinistro-components

Version:
13 lines (12 loc) 359 B
import React from 'react'; import type SignaturePad from 'signature_pad'; export interface Signature { image: string; dots: SignaturePad.Point[][]; } export interface OwnProps { value?: Signature; onChange?: (value?: Signature) => void; } declare const SignatureCanvas: (props: OwnProps) => React.ReactElement; export default SignatureCanvas;