From 576f428b5dcd3cd417b7c0d2d1c62ab5f354b30a Mon Sep 17 00:00:00 2001 From: VitalyDevico Date: Mon, 20 Nov 2023 14:26:41 +0200 Subject: [PATCH] X2-7376 | Added app store and play market badges --- index.d.ts | 2 + src/icons/MobileStore/AppStoreBadge.jsx | 108 ++++++++++++++++++++++ src/icons/MobileStore/PlayMarketBadge.jsx | 90 ++++++++++++++++++ src/index.js | 2 + 4 files changed, 202 insertions(+) create mode 100644 src/icons/MobileStore/AppStoreBadge.jsx create mode 100644 src/icons/MobileStore/PlayMarketBadge.jsx diff --git a/index.d.ts b/index.d.ts index d60f83f9..7c30355d 100644 --- a/index.d.ts +++ b/index.d.ts @@ -8,6 +8,7 @@ export { almostZero, AnnounceIcon, AppIcon, + AppStoreBadge, ArchiveIcon, ArrowCcwIcon, ArrowCwIcon, @@ -186,6 +187,7 @@ export { PinIcon, PipeIcon, PlayIcon, + PlayMarketBadge, PlusIcon, PolicyIcon, Popover, diff --git a/src/icons/MobileStore/AppStoreBadge.jsx b/src/icons/MobileStore/AppStoreBadge.jsx new file mode 100644 index 00000000..13927a01 --- /dev/null +++ b/src/icons/MobileStore/AppStoreBadge.jsx @@ -0,0 +1,108 @@ +import React from "react"; +import { createIcon } from "../../helpers/icon"; + +export const AppStoreBadge = createIcon(() => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}); diff --git a/src/icons/MobileStore/PlayMarketBadge.jsx b/src/icons/MobileStore/PlayMarketBadge.jsx new file mode 100644 index 00000000..c8da3d1a --- /dev/null +++ b/src/icons/MobileStore/PlayMarketBadge.jsx @@ -0,0 +1,90 @@ +import React from "react"; +import { createIcon } from "../../helpers/icon"; + +export const PlayMarketBadge = createIcon(() => { + return ( + + + + + + + + + + + + + + + + + + + + + ); +}); diff --git a/src/index.js b/src/index.js index 5b8c718a..1d3410dd 100644 --- a/src/index.js +++ b/src/index.js @@ -72,6 +72,7 @@ export { AddSquareIcon } from "./icons/AddSquareIcon"; export { AmexIcon } from "./icons/CreditCards/AmexIcon"; export { AnnounceIcon } from "./icons/AnnounceIcon"; export { AppIcon } from "./icons/AppIcon"; +export { AppStoreBadge } from "./icons/MobileStore/AppStoreBadge"; export { ArchiveIcon } from "./icons/ArchiveIcon"; export { ArrowCcwIcon } from "./icons/ArrowCcwIcon"; export { ArrowCwIcon } from "./icons/ArrowCwIcon"; @@ -208,6 +209,7 @@ export { PiggyBankIcon } from "./icons/PiggyBankIcon"; export { PinIcon } from "./icons/PinIcon"; export { PipeIcon } from "./icons/PipeIcon"; export { PlayIcon } from "./icons/PlayIcon"; +export { PlayMarketBadge } from "./icons/MobileStore/PlayMarketBadge"; export { PlusIcon } from "./icons/PlusIcon"; export { PolicyIcon } from "./icons/PolicyIcon"; export { PrintIcon } from "./icons/PrintIcon";