diff --git a/src/Icon/Icon.jsx b/src/Icon/Icon.jsx index 9045f2211..b8cfc919a 100644 --- a/src/Icon/Icon.jsx +++ b/src/Icon/Icon.jsx @@ -67,6 +67,7 @@ Icon.names = { PLAY_BUTTON: "play", PORTAL_OPEN: "portal-open", PRESENT_GIFT: "present-gift", + PRESENT_GIFT_DARK: "present-gift-dark", PRESENTATION: "presentation", PRINTER: "printer", QR: "qr", diff --git a/src/Icon/icons/PresentGiftDark.jsx b/src/Icon/icons/PresentGiftDark.jsx new file mode 100644 index 000000000..1788ea303 --- /dev/null +++ b/src/Icon/icons/PresentGiftDark.jsx @@ -0,0 +1,28 @@ +import React from "react"; + +export default function PresentGiftForDark(props) { + return ( + + + + + + + + + ); +} diff --git a/src/Icon/icons/index.jsx b/src/Icon/icons/index.jsx index 56b588f94..5720fe2e7 100644 --- a/src/Icon/icons/index.jsx +++ b/src/Icon/icons/index.jsx @@ -41,6 +41,7 @@ import Pickax from "./Pickax"; import Play from "./Play"; import PortalOpen from "./PortalOpen"; import PresentGift from "./PresentGift"; +import PresentGiftDark from "./PresentGiftDark"; import Presentation from "./Presentation"; import Printer from "./Printer"; import QR from "./QR"; @@ -110,6 +111,7 @@ export default { play: Play, "portal-open": PortalOpen, "present-gift": PresentGift, + "present-gift-dark": PresentGiftDark, presentation: Presentation, printer: Printer, qr: QR,