import type { HTMLAttributes } from 'react'; import { Trans } from '@lingui/macro'; import { Link } from 'react-router'; import { cn } from '@documenso/ui/lib/utils'; export type DocumentSigningDisclosureProps = HTMLAttributes; export const DocumentSigningDisclosure = ({ className, ...props }: DocumentSigningDisclosureProps) => { return (

By proceeding with your electronic signature, you acknowledge and consent that it will be used to sign the given document and holds the same legal validity as a handwritten signature. By completing the electronic signing process, you affirm your understanding and acceptance of these conditions. Read the full{' '} signature disclosure .

); };