import { Loader } from 'lucide-react'; import { cn } from '@documenso/ui/lib/utils'; export const DocumentSigningFieldsLoader = () => { return (
); }; export const DocumentSigningFieldsUninserted = ({ children }: { children: React.ReactNode }) => { return (

{children}

); }; type DocumentSigningFieldsInsertedProps = { children: React.ReactNode; /** * The text alignment of the field. * * Defaults to left. */ textAlign?: 'left' | 'center' | 'right'; }; export const DocumentSigningFieldsInserted = ({ children, textAlign = 'left', }: DocumentSigningFieldsInsertedProps) => { return (

{children}

); };