diff --git a/index.d.ts b/index.d.ts index fcb03286..4e926be2 100644 --- a/index.d.ts +++ b/index.d.ts @@ -8,6 +8,7 @@ export { almostZero, AnnounceIcon, AppIcon, + AppStoreBadge, ArchiveIcon, ArrowCcwIcon, ArrowCwIcon, @@ -189,6 +190,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 b373d231..b153aced 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"; @@ -211,6 +212,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";