diff --git a/web/components/confirmation-button.tsx b/web/components/confirmation-button.tsx
index 3e36e325..8cb43070 100644
--- a/web/components/confirmation-button.tsx
+++ b/web/components/confirmation-button.tsx
@@ -4,6 +4,7 @@ export function ConfirmationButton(props: {
id: string
openModelBtn: {
label: string
+ icon?: any
className?: string
}
cancelBtn?: {
@@ -25,7 +26,7 @@ export function ConfirmationButton(props: {
htmlFor={id}
className={clsx('btn modal-button', openModelBtn.className)}
>
- {openModelBtn.label}
+ {openModelBtn.icon} {openModelBtn.label}
diff --git a/web/components/create-fold-button.tsx b/web/components/create-fold-button.tsx
index d6085f51..ff90af12 100644
--- a/web/components/create-fold-button.tsx
+++ b/web/components/create-fold-button.tsx
@@ -1,6 +1,7 @@
import clsx from 'clsx'
import { useRouter } from 'next/router'
import { useState } from 'react'
+import { PlusCircleIcon } from '@heroicons/react/solid'
import { parseWordsAsTags } from '../../common/util/parse'
import { createFold } from '../lib/firebase/api-call'
import { foldPath } from '../lib/firebase/folds'
@@ -49,7 +50,8 @@ export function CreateFoldButton() {
,
className: clsx(
isSubmitting ? 'loading btn-disabled' : 'btn-primary',
'btn-sm'