import type { HTMLAttributes } from 'react'; import Link from 'next/link'; import { cn } from '@documenso/ui/lib/utils'; export type SigningDisclosureProps = HTMLAttributes; export const SigningDisclosure = ({ className, ...props }: SigningDisclosureProps) => { 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 .

); };