mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
6 lines
202 B
TypeScript
6 lines
202 B
TypeScript
export const generateTwitterIntent = (text: string, shareUrl: string) => {
|
|
return `https://twitter.com/intent/tweet?text=${encodeURIComponent(
|
|
text,
|
|
)}%0A%0A${encodeURIComponent(shareUrl)}`;
|
|
};
|