From bdd6fcfbbca7a3a107a8141ffd39b74c550d54a4 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Tue, 11 Nov 2025 11:43:44 -0800 Subject: [PATCH] Ph: add Gift/Key --- src/common/components/icons/phosphor/PhGift.tsx | 14 ++++++++++++++ src/common/components/icons/phosphor/PhKey.tsx | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 src/common/components/icons/phosphor/PhGift.tsx create mode 100644 src/common/components/icons/phosphor/PhKey.tsx 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 ( + + + + ); +}