@brizy/ui-icons 0.0.40 → 0.0.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/icons/AddToCart.d.ts +2 -0
- package/es/icons/AddToCart.js +9 -0
- package/es/icons/Pause.d.ts +2 -0
- package/es/icons/Pause.js +4 -0
- package/es/icons/VolumeLow.d.ts +2 -0
- package/es/icons/VolumeLow.js +5 -0
- package/es/icons/VolumeMute.d.ts +2 -0
- package/es/icons/VolumeMute.js +6 -0
- package/es/index.d.ts +4 -0
- package/es/index.js +4 -0
- package/lib/icons/AddToCart.d.ts +2 -0
- package/lib/icons/AddToCart.js +15 -0
- package/lib/icons/Pause.d.ts +2 -0
- package/lib/icons/Pause.js +10 -0
- package/lib/icons/VolumeLow.d.ts +2 -0
- package/lib/icons/VolumeLow.js +11 -0
- package/lib/icons/VolumeMute.d.ts +2 -0
- package/lib/icons/VolumeMute.js +12 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.js +9 -1
- package/package-lock.json +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export const AddToCart = () => (React.createElement("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24" },
|
|
3
|
+
React.createElement("g", { fill: "none", stroke: "currentColor", strokeMiterlimit: 10 },
|
|
4
|
+
React.createElement("path", { strokeLinecap: "square", d: "M13 3v7", "data-color": "color-2", vectorEffect: "non-scaling-stroke" }),
|
|
5
|
+
React.createElement("path", { strokeLinecap: "square", d: "m15 10-2 2-2-2z", "data-color": "color-2", vectorEffect: "non-scaling-stroke" }),
|
|
6
|
+
React.createElement("circle", { cx: 7, cy: 21, r: 2, strokeLinecap: "square", "data-color": "color-2", vectorEffect: "non-scaling-stroke" }),
|
|
7
|
+
React.createElement("circle", { cx: 19, cy: 21, r: 2, strokeLinecap: "square", "data-color": "color-2", vectorEffect: "non-scaling-stroke" }),
|
|
8
|
+
React.createElement("path", { d: "M17 6h5l-2 10H6L4 1H1", "data-cap": "butt", vectorEffect: "non-scaling-stroke" }),
|
|
9
|
+
React.createElement("path", { d: "M9 6H4.667", "data-cap": "butt", vectorEffect: "non-scaling-stroke" }))));
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export const Pause = () => (React.createElement("svg", { width: "1em", height: "1em", fill: "currentColor", viewBox: "0 0 24 24" },
|
|
3
|
+
React.createElement("g", { stroke: "none", fill: "currentColor" },
|
|
4
|
+
React.createElement("path", { d: "M9 1H3a1 1 0 00-1 1v20a1 1 0 001 1h6a1 1 0 001-1V2a1 1 0 00-1-1zM21 1h-6a1 1 0 00-1 1v20a1 1 0 001 1h6a1 1 0 001-1V2a1 1 0 00-1-1z" }))));
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export const VolumeLow = () => (React.createElement("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24" },
|
|
3
|
+
React.createElement("g", { fill: "none", stroke: "currentColor" },
|
|
4
|
+
React.createElement("path", { d: "M14 22L6 16 1 16 1 8 6 8 14 2z" }),
|
|
5
|
+
React.createElement("path", { d: "M17.5 15.5c2-2 2-5.1 0-7.1M20.4 18.4c3.5-3.5 3.5-9.2 0-12.7", "data-color": "color-2" }))));
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export const VolumeMute = () => (React.createElement("svg", { width: "1em", height: "1em", x: "0", y: "0", viewBox: "0 0 24 24" },
|
|
3
|
+
React.createElement("g", { fill: "none", stroke: "currentColor" },
|
|
4
|
+
React.createElement("path", { d: "M18 11L18 22 11.813 17.36" }),
|
|
5
|
+
React.createElement("path", { d: "M8 16L2 16 2 8 10 8 18 2 18 6", "data-cap": "butt" }),
|
|
6
|
+
React.createElement("path", { d: "M23 1L1 23", "data-cap": "butt", "data-color": "color-2" }))));
|
package/es/index.d.ts
CHANGED
|
@@ -24,6 +24,9 @@ export { Settings } from "./icons/Settings";
|
|
|
24
24
|
export { Blog } from "./icons/Blog";
|
|
25
25
|
export { Portfolio } from "./icons/Portfolio";
|
|
26
26
|
export { Calendar } from "./icons/Calendar";
|
|
27
|
+
export { Pause } from "./icons/Pause";
|
|
28
|
+
export { VolumeLow } from "./icons/VolumeLow";
|
|
29
|
+
export { VolumeMute } from "./icons/VolumeMute";
|
|
27
30
|
export { Tags } from "./icons/Tags";
|
|
28
31
|
export { Box } from "./icons/Box";
|
|
29
32
|
export { Profile } from "./icons/Profile";
|
|
@@ -136,6 +139,7 @@ export { Circle2 } from "./icons/Circle2";
|
|
|
136
139
|
export { Unlock } from "./icons/Unlock";
|
|
137
140
|
export { SecondPlay } from "./icons/SecondPlay";
|
|
138
141
|
export { Support } from "./icons/Support";
|
|
142
|
+
export { AddToCart } from "./icons/AddToCart";
|
|
139
143
|
export { MinistryBrandsSermonList } from "./icons/MinistryBrandsSermonList";
|
|
140
144
|
export { MinistryBrandsSermonDetail } from "./icons/MinistryBrandsSermonDetail";
|
|
141
145
|
export { MinistryBrandsSermonFeatured } from "./icons/MinistryBrandsSermonFeatured";
|
package/es/index.js
CHANGED
|
@@ -24,6 +24,9 @@ export { Settings } from "./icons/Settings";
|
|
|
24
24
|
export { Blog } from "./icons/Blog";
|
|
25
25
|
export { Portfolio } from "./icons/Portfolio";
|
|
26
26
|
export { Calendar } from "./icons/Calendar";
|
|
27
|
+
export { Pause } from "./icons/Pause";
|
|
28
|
+
export { VolumeLow } from "./icons/VolumeLow";
|
|
29
|
+
export { VolumeMute } from "./icons/VolumeMute";
|
|
27
30
|
export { Tags } from "./icons/Tags";
|
|
28
31
|
export { Box } from "./icons/Box";
|
|
29
32
|
export { Profile } from "./icons/Profile";
|
|
@@ -136,6 +139,7 @@ export { Circle2 } from "./icons/Circle2";
|
|
|
136
139
|
export { Unlock } from "./icons/Unlock";
|
|
137
140
|
export { SecondPlay } from "./icons/SecondPlay";
|
|
138
141
|
export { Support } from "./icons/Support";
|
|
142
|
+
export { AddToCart } from "./icons/AddToCart";
|
|
139
143
|
// Ministry Brands
|
|
140
144
|
export { MinistryBrandsSermonList } from "./icons/MinistryBrandsSermonList";
|
|
141
145
|
export { MinistryBrandsSermonDetail } from "./icons/MinistryBrandsSermonDetail";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.AddToCart = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.AddToCart = () => (react_1.default.createElement("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24" },
|
|
9
|
+
react_1.default.createElement("g", { fill: "none", stroke: "currentColor", strokeMiterlimit: 10 },
|
|
10
|
+
react_1.default.createElement("path", { strokeLinecap: "square", d: "M13 3v7", "data-color": "color-2", vectorEffect: "non-scaling-stroke" }),
|
|
11
|
+
react_1.default.createElement("path", { strokeLinecap: "square", d: "m15 10-2 2-2-2z", "data-color": "color-2", vectorEffect: "non-scaling-stroke" }),
|
|
12
|
+
react_1.default.createElement("circle", { cx: 7, cy: 21, r: 2, strokeLinecap: "square", "data-color": "color-2", vectorEffect: "non-scaling-stroke" }),
|
|
13
|
+
react_1.default.createElement("circle", { cx: 19, cy: 21, r: 2, strokeLinecap: "square", "data-color": "color-2", vectorEffect: "non-scaling-stroke" }),
|
|
14
|
+
react_1.default.createElement("path", { d: "M17 6h5l-2 10H6L4 1H1", "data-cap": "butt", vectorEffect: "non-scaling-stroke" }),
|
|
15
|
+
react_1.default.createElement("path", { d: "M9 6H4.667", "data-cap": "butt", vectorEffect: "non-scaling-stroke" }))));
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.Pause = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.Pause = () => (react_1.default.createElement("svg", { width: "1em", height: "1em", fill: "currentColor", viewBox: "0 0 24 24" },
|
|
9
|
+
react_1.default.createElement("g", { stroke: "none", fill: "currentColor" },
|
|
10
|
+
react_1.default.createElement("path", { d: "M9 1H3a1 1 0 00-1 1v20a1 1 0 001 1h6a1 1 0 001-1V2a1 1 0 00-1-1zM21 1h-6a1 1 0 00-1 1v20a1 1 0 001 1h6a1 1 0 001-1V2a1 1 0 00-1-1z" }))));
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.VolumeLow = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.VolumeLow = () => (react_1.default.createElement("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24" },
|
|
9
|
+
react_1.default.createElement("g", { fill: "none", stroke: "currentColor" },
|
|
10
|
+
react_1.default.createElement("path", { d: "M14 22L6 16 1 16 1 8 6 8 14 2z" }),
|
|
11
|
+
react_1.default.createElement("path", { d: "M17.5 15.5c2-2 2-5.1 0-7.1M20.4 18.4c3.5-3.5 3.5-9.2 0-12.7", "data-color": "color-2" }))));
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.VolumeMute = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.VolumeMute = () => (react_1.default.createElement("svg", { width: "1em", height: "1em", x: "0", y: "0", viewBox: "0 0 24 24" },
|
|
9
|
+
react_1.default.createElement("g", { fill: "none", stroke: "currentColor" },
|
|
10
|
+
react_1.default.createElement("path", { d: "M18 11L18 22 11.813 17.36" }),
|
|
11
|
+
react_1.default.createElement("path", { d: "M8 16L2 16 2 8 10 8 18 2 18 6", "data-cap": "butt" }),
|
|
12
|
+
react_1.default.createElement("path", { d: "M23 1L1 23", "data-cap": "butt", "data-color": "color-2" }))));
|
package/lib/index.d.ts
CHANGED
|
@@ -24,6 +24,9 @@ export { Settings } from "./icons/Settings";
|
|
|
24
24
|
export { Blog } from "./icons/Blog";
|
|
25
25
|
export { Portfolio } from "./icons/Portfolio";
|
|
26
26
|
export { Calendar } from "./icons/Calendar";
|
|
27
|
+
export { Pause } from "./icons/Pause";
|
|
28
|
+
export { VolumeLow } from "./icons/VolumeLow";
|
|
29
|
+
export { VolumeMute } from "./icons/VolumeMute";
|
|
27
30
|
export { Tags } from "./icons/Tags";
|
|
28
31
|
export { Box } from "./icons/Box";
|
|
29
32
|
export { Profile } from "./icons/Profile";
|
|
@@ -136,6 +139,7 @@ export { Circle2 } from "./icons/Circle2";
|
|
|
136
139
|
export { Unlock } from "./icons/Unlock";
|
|
137
140
|
export { SecondPlay } from "./icons/SecondPlay";
|
|
138
141
|
export { Support } from "./icons/Support";
|
|
142
|
+
export { AddToCart } from "./icons/AddToCart";
|
|
139
143
|
export { MinistryBrandsSermonList } from "./icons/MinistryBrandsSermonList";
|
|
140
144
|
export { MinistryBrandsSermonDetail } from "./icons/MinistryBrandsSermonDetail";
|
|
141
145
|
export { MinistryBrandsSermonFeatured } from "./icons/MinistryBrandsSermonFeatured";
|
package/lib/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ArrowRightLegacy = exports.DuplicateLegacy = exports.DeleteLegacy = exports.CloseLegacy = exports.CheckSmallLegacy = exports.CheckCircleLegacy = exports.HeartLegacy = exports.PlusCircleLegacy = exports.SettingsLegacy = exports.SpinnerLegacy = exports.MediaMap = exports.MediaVideo = exports.MediaImage = exports.HrzAlignRight = exports.HrzAlignLeft = exports.TextAlignJustify = exports.TextAlignRight = exports.TextAlignLeft = exports.TextAlignCenter = exports.MinistryBrandsGroupSlider = exports.MinistryBrandsGroupLayout = exports.MinistryBrandsGroupFeatured = exports.MinistryBrandsGroupDetail = exports.MinistryBrandsGroupList = exports.MinistryBrandsEventCalendar = exports.MinistryBrandsEventLayout = exports.MinistryBrandsEventFeatured = exports.MinistryBrandsEventDetail = exports.MinistryBrandsEventList = exports.MinistryBrandsSermonLayout = exports.MinistryBrandsSermonFeatured = exports.MinistryBrandsSermonDetail = exports.MinistryBrandsSermonList = exports.Support = exports.SecondPlay = exports.Unlock = exports.Circle2 = exports.CircleRemove = exports.StreDown = exports.StreUp = exports.Reverse = exports.StarShapes = exports.Send = exports.Message = exports.EnterRounded = exports.NothingSelected = exports.Search = exports.DuplicateReversed = exports.Extend = exports.Multilanguage = exports.Microphone = exports.Shorten = exports.Discounts = exports.NotificationsOutlined = exports.BrizyLogo = exports.Diagram = exports.Window = exports.LockFilled = exports.Heart = exports.Redirect = exports.Tax = exports.Taxes = exports.Mention = exports.Attachment = exports.Clock = exports.Hide = exports.View = exports.Redo = exports.Undo = exports.Tasks = exports.Comments = exports.BadgeLetter = exports.BadgeCheck = exports.LanguagesOutlined = exports.ChevronRight = exports.Phone = exports.Disable = exports.Contrast = exports.Brightness = exports.Drop = exports.RGB = exports.Home = exports.ColorPicker = exports.Globe = exports.FileDownload = exports.File = exports.CalendarPlusOutlined = exports.Tag = exports.PageSettingsFilled = exports.PageSettingsOutlined = exports.ShippingOutlined = exports.Menu = exports.OrderBox = exports.MultiReffe = exports.OfflineCache = exports.Bitcoin = exports.PayPal = exports.Lock = exports.GlobalShipping = exports.ChevronLeft = exports.Css3 = exports.Warning = exports.Enter = exports.Spinner = exports.StarOutlined = exports.StoreAddress = exports.Store = exports.LanguagesFilled = exports.Notifications = exports.CreditCardSecureOutlined = exports.CreditCardSecure = exports.Checkout = exports.Options = exports.BoxOutlined = exports.Shipping = exports.Refund = exports.CustomerDetails = exports.Customers = exports.Promote = exports.Edit = exports.CalendarFilled = exports.ColorPickerFilled = exports.Play = exports.CaretDown = exports.Images = exports.Link = exports.Hashtag = exports.TextArea = exports.Reffe = exports.Dropper = exports.ImageFilled = exports.ToggleOff = exports.ImageOutlined = exports.CheckOutlined = exports.ArrowLeft = exports.SEO = exports.Close = exports.Compose = exports.CloseOulined = exports.Code = exports.Delete = exports.Popup = exports.Profile = exports.Box = exports.Tags = exports.Calendar = exports.Portfolio = exports.Blog = exports.Settings = exports.Pages = exports.AnchorOutlined = exports.Anchor = exports.Check = exports.Star = exports.Share = exports.InfoCircle = exports.Text = exports.Empty = exports.Duplicate = exports.Counter = exports.CheckSmall = exports.CheckCircle = exports.Brush = exports.BlockSwitch = exports.Blocks = exports.ArrowRight = exports.AlignHorizontal = exports.QuestionCircleOutlined = exports.QuestionCircle = exports.PlusCircle = exports.Active = void 0;
|
|
3
|
+
exports.ArrowRightLegacy = exports.DuplicateLegacy = exports.DeleteLegacy = exports.CloseLegacy = exports.CheckSmallLegacy = exports.CheckCircleLegacy = exports.HeartLegacy = exports.PlusCircleLegacy = exports.SettingsLegacy = exports.SpinnerLegacy = exports.MediaMap = exports.MediaVideo = exports.MediaImage = exports.HrzAlignRight = exports.HrzAlignLeft = exports.TextAlignJustify = exports.TextAlignRight = exports.TextAlignLeft = exports.TextAlignCenter = exports.MinistryBrandsGroupSlider = exports.MinistryBrandsGroupLayout = exports.MinistryBrandsGroupFeatured = exports.MinistryBrandsGroupDetail = exports.MinistryBrandsGroupList = exports.MinistryBrandsEventCalendar = exports.MinistryBrandsEventLayout = exports.MinistryBrandsEventFeatured = exports.MinistryBrandsEventDetail = exports.MinistryBrandsEventList = exports.MinistryBrandsSermonLayout = exports.MinistryBrandsSermonFeatured = exports.MinistryBrandsSermonDetail = exports.MinistryBrandsSermonList = exports.AddToCart = exports.Support = exports.SecondPlay = exports.Unlock = exports.Circle2 = exports.CircleRemove = exports.StreDown = exports.StreUp = exports.Reverse = exports.StarShapes = exports.Send = exports.Message = exports.EnterRounded = exports.NothingSelected = exports.Search = exports.DuplicateReversed = exports.Extend = exports.Multilanguage = exports.Microphone = exports.Shorten = exports.Discounts = exports.NotificationsOutlined = exports.BrizyLogo = exports.Diagram = exports.Window = exports.LockFilled = exports.Heart = exports.Redirect = exports.Tax = exports.Taxes = exports.Mention = exports.Attachment = exports.Clock = exports.Hide = exports.View = exports.Redo = exports.Undo = exports.Tasks = exports.Comments = exports.BadgeLetter = exports.BadgeCheck = exports.LanguagesOutlined = exports.ChevronRight = exports.Phone = exports.Disable = exports.Contrast = exports.Brightness = exports.Drop = exports.RGB = exports.Home = exports.ColorPicker = exports.Globe = exports.FileDownload = exports.File = exports.CalendarPlusOutlined = exports.Tag = exports.PageSettingsFilled = exports.PageSettingsOutlined = exports.ShippingOutlined = exports.Menu = exports.OrderBox = exports.MultiReffe = exports.OfflineCache = exports.Bitcoin = exports.PayPal = exports.Lock = exports.GlobalShipping = exports.ChevronLeft = exports.Css3 = exports.Warning = exports.Enter = exports.Spinner = exports.StarOutlined = exports.StoreAddress = exports.Store = exports.LanguagesFilled = exports.Notifications = exports.CreditCardSecureOutlined = exports.CreditCardSecure = exports.Checkout = exports.Options = exports.BoxOutlined = exports.Shipping = exports.Refund = exports.CustomerDetails = exports.Customers = exports.Promote = exports.Edit = exports.CalendarFilled = exports.ColorPickerFilled = exports.Play = exports.CaretDown = exports.Images = exports.Link = exports.Hashtag = exports.TextArea = exports.Reffe = exports.Dropper = exports.ImageFilled = exports.ToggleOff = exports.ImageOutlined = exports.CheckOutlined = exports.ArrowLeft = exports.SEO = exports.Close = exports.Compose = exports.CloseOulined = exports.Code = exports.Delete = exports.Popup = exports.Profile = exports.Box = exports.Tags = exports.VolumeMute = exports.VolumeLow = exports.Pause = exports.Calendar = exports.Portfolio = exports.Blog = exports.Settings = exports.Pages = exports.AnchorOutlined = exports.Anchor = exports.Check = exports.Star = exports.Share = exports.InfoCircle = exports.Text = exports.Empty = exports.Duplicate = exports.Counter = exports.CheckSmall = exports.CheckCircle = exports.Brush = exports.BlockSwitch = exports.Blocks = exports.ArrowRight = exports.AlignHorizontal = exports.QuestionCircleOutlined = exports.QuestionCircle = exports.PlusCircle = exports.Active = void 0;
|
|
4
4
|
var Active_1 = require("./icons/Active");
|
|
5
5
|
Object.defineProperty(exports, "Active", { enumerable: true, get: function () { return Active_1.Active; } });
|
|
6
6
|
var PlusCircle_1 = require("./icons/PlusCircle");
|
|
@@ -53,6 +53,12 @@ var Portfolio_1 = require("./icons/Portfolio");
|
|
|
53
53
|
Object.defineProperty(exports, "Portfolio", { enumerable: true, get: function () { return Portfolio_1.Portfolio; } });
|
|
54
54
|
var Calendar_1 = require("./icons/Calendar");
|
|
55
55
|
Object.defineProperty(exports, "Calendar", { enumerable: true, get: function () { return Calendar_1.Calendar; } });
|
|
56
|
+
var Pause_1 = require("./icons/Pause");
|
|
57
|
+
Object.defineProperty(exports, "Pause", { enumerable: true, get: function () { return Pause_1.Pause; } });
|
|
58
|
+
var VolumeLow_1 = require("./icons/VolumeLow");
|
|
59
|
+
Object.defineProperty(exports, "VolumeLow", { enumerable: true, get: function () { return VolumeLow_1.VolumeLow; } });
|
|
60
|
+
var VolumeMute_1 = require("./icons/VolumeMute");
|
|
61
|
+
Object.defineProperty(exports, "VolumeMute", { enumerable: true, get: function () { return VolumeMute_1.VolumeMute; } });
|
|
56
62
|
var Tags_1 = require("./icons/Tags");
|
|
57
63
|
Object.defineProperty(exports, "Tags", { enumerable: true, get: function () { return Tags_1.Tags; } });
|
|
58
64
|
var Box_1 = require("./icons/Box");
|
|
@@ -277,6 +283,8 @@ var SecondPlay_1 = require("./icons/SecondPlay");
|
|
|
277
283
|
Object.defineProperty(exports, "SecondPlay", { enumerable: true, get: function () { return SecondPlay_1.SecondPlay; } });
|
|
278
284
|
var Support_1 = require("./icons/Support");
|
|
279
285
|
Object.defineProperty(exports, "Support", { enumerable: true, get: function () { return Support_1.Support; } });
|
|
286
|
+
var AddToCart_1 = require("./icons/AddToCart");
|
|
287
|
+
Object.defineProperty(exports, "AddToCart", { enumerable: true, get: function () { return AddToCart_1.AddToCart; } });
|
|
280
288
|
// Ministry Brands
|
|
281
289
|
var MinistryBrandsSermonList_1 = require("./icons/MinistryBrandsSermonList");
|
|
282
290
|
Object.defineProperty(exports, "MinistryBrandsSermonList", { enumerable: true, get: function () { return MinistryBrandsSermonList_1.MinistryBrandsSermonList; } });
|
package/package-lock.json
CHANGED