diff --git a/src/common/components/icons/phosphor/PhGift.tsx b/src/common/components/icons/phosphor/PhGift.tsx
new file mode 100644
index 000000000..7d6a25a03
--- /dev/null
+++ b/src/common/components/icons/phosphor/PhGift.tsx
@@ -0,0 +1,14 @@
+import * as React from 'react';
+
+import { SvgIcon, SvgIconProps } from '@mui/joy';
+
+/*
+ * Source: 'https://phosphoricons.com/' - gift
+ */
+export function PhGift(props: SvgIconProps) {
+ return (
+
+
+
+ );
+}
diff --git a/src/common/components/icons/phosphor/PhKey.tsx b/src/common/components/icons/phosphor/PhKey.tsx
new file mode 100644
index 000000000..a357ab118
--- /dev/null
+++ b/src/common/components/icons/phosphor/PhKey.tsx
@@ -0,0 +1,14 @@
+import * as React from 'react';
+
+import { SvgIcon, SvgIconProps } from '@mui/joy';
+
+/*
+ * Source: 'https://phosphoricons.com/' - key
+ */
+export function PhKey(props: SvgIconProps) {
+ return (
+
+
+
+ );
+}