implement button to download PDF from a public resume page

This commit is contained in:
Amruth Pillai
2023-11-21 13:45:39 +01:00
parent 422865b3ad
commit 2a3ae68948
51 changed files with 1651 additions and 1631 deletions

View File

@ -126,13 +126,13 @@ export const BuilderToolbar = () => {
</Button>
</Tooltip>
<Tooltip content={t`Export as PDF`}>
<Tooltip content={t`Download PDF`}>
<Button
size="icon"
variant="ghost"
className="rounded-none"
onClick={onPrint}
disabled={loading}
className="rounded-none"
>
{loading ? <CircleNotch className="animate-spin" /> : <FilePdf />}
</Button>