import { Loader } from 'lucide-react'; import { cn } from '@documenso/ui/lib/utils'; export const DocumentSigningFieldsLoader = () => { 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}