mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
14 lines
448 B
TypeScript
14 lines
448 B
TypeScript
import { Toast } from '@documenso/ui/primitives/use-toast';
|
|
|
|
export const TOAST_DOCUMENT_SHARE_SUCCESS: Toast = {
|
|
title: 'Copied to clipboard',
|
|
description: 'The sharing link has been copied to your clipboard.',
|
|
} as const;
|
|
|
|
export const TOAST_DOCUMENT_SHARE_ERROR: Toast = {
|
|
variant: 'destructive',
|
|
title: 'Something went wrong',
|
|
description: 'The sharing link could not be created at this time. Please try again.',
|
|
duration: 5000,
|
|
};
|