@brizy/ui-icons 0.0.34 → 0.0.35
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/ArrowRight.d.ts +2 -1
- package/es/icons/ArrowRight.js +1 -1
- package/es/icons/MediaImage.d.ts +3 -0
- package/es/icons/MediaImage.js +4 -0
- package/es/icons/MediaMap.d.ts +3 -0
- package/es/icons/MediaMap.js +4 -0
- package/es/icons/MediaVideo.d.ts +3 -0
- package/es/icons/MediaVideo.js +4 -0
- package/es/icons/Reverse.d.ts +3 -0
- package/es/icons/Reverse.js +4 -0
- package/es/index.d.ts +4 -0
- package/es/index.js +5 -0
- package/lib/icons/ArrowRight.d.ts +2 -1
- package/lib/icons/ArrowRight.js +1 -1
- package/lib/icons/MediaImage.d.ts +3 -0
- package/lib/icons/MediaImage.js +10 -0
- package/lib/icons/MediaMap.d.ts +3 -0
- package/lib/icons/MediaMap.js +10 -0
- package/lib/icons/MediaVideo.d.ts +3 -0
- package/lib/icons/MediaVideo.js +10 -0
- package/lib/icons/Reverse.d.ts +3 -0
- package/lib/icons/Reverse.js +10 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.js +10 -1
- package/package-lock.json +1 -1
- package/package.json +1 -1
package/es/icons/ArrowRight.d.ts
CHANGED
package/es/icons/ArrowRight.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
export const ArrowRight = () => (React.createElement("svg", { width: "1em", height: "1em", fill: "currentColor", viewBox: "0 0 16 16" },
|
|
2
|
+
export const ArrowRight = ({ className, onClick, style }) => (React.createElement("svg", { className: className, style: style, onClick: onClick, width: "1em", height: "1em", fill: "currentColor", viewBox: "0 0 16 16" },
|
|
3
3
|
React.createElement("g", null,
|
|
4
4
|
React.createElement("path", { fill: "currentColor", d: "M9.3 1.3L7.9 2.7 12.2 7H0v2h12.2l-4.3 4.3 1.4 1.4L16 8z" }))));
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export const MediaImage = ({ className, onClick, style }) => (React.createElement("svg", { className: className, style: style, onClick: onClick, viewBox: "0 0 16 16", width: "1em", height: "1em" },
|
|
3
|
+
React.createElement("g", { stroke: "none", fill: "none", strokeWidth: "1", fillRule: "evenodd" },
|
|
4
|
+
React.createElement("path", { d: "M5.2,2 C6.04,2 6.6,2.6 6.6,3.5 C6.6,4.4 6.04,5 5.2,5 C4.36,5 3.8,4.4 3.8,3.5 C3.8,2.6 4.36,2 5.2,2 Z M1,14 L3.8,8 L6.6,11 L10.8,5 L15,14 L1,14 Z", fill: "currentColor", fillRule: "nonzero" }))));
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export const MediaMap = ({ className, onClick, style }) => (React.createElement("svg", { className: className, style: style, onClick: onClick, viewBox: "0 0 16 16", width: "1em", height: "1em" },
|
|
3
|
+
React.createElement("g", { stroke: "none", fill: "none", strokeWidth: "1", fillRule: "evenodd" },
|
|
4
|
+
React.createElement("path", { d: "M7,12 C7.55228475,12.5522847 8.44771525,12.5522847 9,12 L9,14 C9,14.5522847 8.55228475,15 8,15 C7.44771525,15 7,14.5522847 7,14 L7,12 Z M8,11 C5.51471863,11 3.5,8.98528137 3.5,6.5 C3.5,4.01471863 5.51471863,2 8,2 C10.4852814,2 12.5,4.01471863 12.5,6.5 C12.5,8.98528137 10.4852814,11 8,11 Z", fill: "currentColor", fillRule: "nonzero" }))));
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export const MediaVideo = ({ className, onClick, style }) => (React.createElement("svg", { className: className, style: style, onClick: onClick, viewBox: "0 0 16 16", width: "1em", height: "1em" },
|
|
3
|
+
React.createElement("g", { stroke: "none", fill: "none", strokeWidth: "1", fillRule: "evenodd" },
|
|
4
|
+
React.createElement("path", { d: "M11,6.5 C11,6.01538462 10.65,5.69230769 10.125,5.69230769 L8,5.69230769 L8,2.80769231 C8,2.32307692 7.65,2 7.125,2 L3,2 L3,3.84615385 L6,3.84615385 L6,5.69230769 L1.875,5.69230769 C1.35,5.69230769 1,6.01538462 1,6.5 L1,13.1923077 C1,13.6769231 1.35,14 1.875,14 L10.125,14 C10.65,14 11,13.6769231 11,13.1923077 L11,11.5769231 L15,13.1923077 L15,6.5 L11,8.11538462 L11,6.5 Z", fill: "currentColor", fillRule: "nonzero" }))));
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export const Reverse = ({ className, onClick, style }) => (React.createElement("svg", { className: className, style: style, onClick: onClick, viewBox: "0 0 16 16", width: "1em", height: "1em" },
|
|
3
|
+
React.createElement("g", { stroke: "none", fill: "currentColor", strokeWidth: "1", fillRule: "evenodd" },
|
|
4
|
+
React.createElement("path", { d: "M7.89083375,2.40504334 C5.08794742,2.40504334 2.71715368,4.33790386 2.25534043,7 L4.97379915e-14,6.63483058 C0.648138887,2.90591017 3.96656426,0.19858156 7.89083375,0.19858156 C9.84553833,0.19858156 11.7236551,0.895823483 13.1776809,2.12923562 L15.383868,7.10542736e-15 L16,6.85216706 L8.9001929,6.25752561 L11.554476,3.69582348 C10.5325427,2.87171001 9.23855112,2.40504334 7.89083375,2.40504334 Z M8.10916625,13.5949567 C10.9120526,13.5949567 13.2828463,11.6620961 13.7446596,9 L16,9.36516942 C15.3518611,13.0940898 12.0334357,15.8014184 8.10916625,15.8014184 C6.15446167,15.8014184 4.27634493,15.1041765 2.82231907,13.8707644 L0.616132028,16 L4.97379915e-14,9.14783294 L7.0998071,9.74247439 L4.44552404,12.3041765 C5.46745731,13.12829 6.76144888,13.5949567 8.10916625,13.5949567 Z", fill: "currentColor", fillRule: "nonzero" }))));
|
package/es/index.d.ts
CHANGED
|
@@ -116,6 +116,7 @@ export { Diagram } from "./icons/Diagram";
|
|
|
116
116
|
export { BrizyLogo } from "./icons/BrizyLogo";
|
|
117
117
|
export { NotificationsOutlined } from "./icons/NotificationsOutlined";
|
|
118
118
|
export { Discounts } from "./icons/Discounts";
|
|
119
|
+
export { Reverse } from "./icons/Reverse";
|
|
119
120
|
export { MinistryBrandsSermonList } from "./icons/MinistryBrandsSermonList";
|
|
120
121
|
export { MinistryBrandsSermonDetail } from "./icons/MinistryBrandsSermonDetail";
|
|
121
122
|
export { MinistryBrandsSermonFeatured } from "./icons/MinistryBrandsSermonFeatured";
|
|
@@ -134,3 +135,6 @@ export { TextAlignCenter } from "./icons/TextAlignCenter";
|
|
|
134
135
|
export { TextAlignLeft } from "./icons/TextAlignLeft";
|
|
135
136
|
export { TextAlignRight } from "./icons/TextAlignRight";
|
|
136
137
|
export { TextAlignJustify } from "./icons/TextAlignJustify";
|
|
138
|
+
export { MediaImage } from "./icons/MediaImage";
|
|
139
|
+
export { MediaVideo } from "./icons/MediaVideo";
|
|
140
|
+
export { MediaMap } from "./icons/MediaMap";
|
package/es/index.js
CHANGED
|
@@ -116,6 +116,7 @@ export { Diagram } from "./icons/Diagram";
|
|
|
116
116
|
export { BrizyLogo } from "./icons/BrizyLogo";
|
|
117
117
|
export { NotificationsOutlined } from "./icons/NotificationsOutlined";
|
|
118
118
|
export { Discounts } from "./icons/Discounts";
|
|
119
|
+
export { Reverse } from "./icons/Reverse";
|
|
119
120
|
// Ministry Brands
|
|
120
121
|
export { MinistryBrandsSermonList } from "./icons/MinistryBrandsSermonList";
|
|
121
122
|
export { MinistryBrandsSermonDetail } from "./icons/MinistryBrandsSermonDetail";
|
|
@@ -136,3 +137,7 @@ export { TextAlignCenter } from "./icons/TextAlignCenter";
|
|
|
136
137
|
export { TextAlignLeft } from "./icons/TextAlignLeft";
|
|
137
138
|
export { TextAlignRight } from "./icons/TextAlignRight";
|
|
138
139
|
export { TextAlignJustify } from "./icons/TextAlignJustify";
|
|
140
|
+
// Media
|
|
141
|
+
export { MediaImage } from "./icons/MediaImage";
|
|
142
|
+
export { MediaVideo } from "./icons/MediaVideo";
|
|
143
|
+
export { MediaMap } from "./icons/MediaMap";
|
package/lib/icons/ArrowRight.js
CHANGED
|
@@ -5,6 +5,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.ArrowRight = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
exports.ArrowRight = () => (react_1.default.createElement("svg", { width: "1em", height: "1em", fill: "currentColor", viewBox: "0 0 16 16" },
|
|
8
|
+
exports.ArrowRight = ({ className, onClick, style }) => (react_1.default.createElement("svg", { className: className, style: style, onClick: onClick, width: "1em", height: "1em", fill: "currentColor", viewBox: "0 0 16 16" },
|
|
9
9
|
react_1.default.createElement("g", null,
|
|
10
10
|
react_1.default.createElement("path", { fill: "currentColor", d: "M9.3 1.3L7.9 2.7 12.2 7H0v2h12.2l-4.3 4.3 1.4 1.4L16 8z" }))));
|
|
@@ -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.MediaImage = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.MediaImage = ({ className, onClick, style }) => (react_1.default.createElement("svg", { className: className, style: style, onClick: onClick, viewBox: "0 0 16 16", width: "1em", height: "1em" },
|
|
9
|
+
react_1.default.createElement("g", { stroke: "none", fill: "none", strokeWidth: "1", fillRule: "evenodd" },
|
|
10
|
+
react_1.default.createElement("path", { d: "M5.2,2 C6.04,2 6.6,2.6 6.6,3.5 C6.6,4.4 6.04,5 5.2,5 C4.36,5 3.8,4.4 3.8,3.5 C3.8,2.6 4.36,2 5.2,2 Z M1,14 L3.8,8 L6.6,11 L10.8,5 L15,14 L1,14 Z", fill: "currentColor", fillRule: "nonzero" }))));
|
|
@@ -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.MediaMap = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.MediaMap = ({ className, onClick, style }) => (react_1.default.createElement("svg", { className: className, style: style, onClick: onClick, viewBox: "0 0 16 16", width: "1em", height: "1em" },
|
|
9
|
+
react_1.default.createElement("g", { stroke: "none", fill: "none", strokeWidth: "1", fillRule: "evenodd" },
|
|
10
|
+
react_1.default.createElement("path", { d: "M7,12 C7.55228475,12.5522847 8.44771525,12.5522847 9,12 L9,14 C9,14.5522847 8.55228475,15 8,15 C7.44771525,15 7,14.5522847 7,14 L7,12 Z M8,11 C5.51471863,11 3.5,8.98528137 3.5,6.5 C3.5,4.01471863 5.51471863,2 8,2 C10.4852814,2 12.5,4.01471863 12.5,6.5 C12.5,8.98528137 10.4852814,11 8,11 Z", fill: "currentColor", fillRule: "nonzero" }))));
|
|
@@ -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.MediaVideo = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.MediaVideo = ({ className, onClick, style }) => (react_1.default.createElement("svg", { className: className, style: style, onClick: onClick, viewBox: "0 0 16 16", width: "1em", height: "1em" },
|
|
9
|
+
react_1.default.createElement("g", { stroke: "none", fill: "none", strokeWidth: "1", fillRule: "evenodd" },
|
|
10
|
+
react_1.default.createElement("path", { d: "M11,6.5 C11,6.01538462 10.65,5.69230769 10.125,5.69230769 L8,5.69230769 L8,2.80769231 C8,2.32307692 7.65,2 7.125,2 L3,2 L3,3.84615385 L6,3.84615385 L6,5.69230769 L1.875,5.69230769 C1.35,5.69230769 1,6.01538462 1,6.5 L1,13.1923077 C1,13.6769231 1.35,14 1.875,14 L10.125,14 C10.65,14 11,13.6769231 11,13.1923077 L11,11.5769231 L15,13.1923077 L15,6.5 L11,8.11538462 L11,6.5 Z", fill: "currentColor", fillRule: "nonzero" }))));
|
|
@@ -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.Reverse = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.Reverse = ({ className, onClick, style }) => (react_1.default.createElement("svg", { className: className, style: style, onClick: onClick, viewBox: "0 0 16 16", width: "1em", height: "1em" },
|
|
9
|
+
react_1.default.createElement("g", { stroke: "none", fill: "currentColor", strokeWidth: "1", fillRule: "evenodd" },
|
|
10
|
+
react_1.default.createElement("path", { d: "M7.89083375,2.40504334 C5.08794742,2.40504334 2.71715368,4.33790386 2.25534043,7 L4.97379915e-14,6.63483058 C0.648138887,2.90591017 3.96656426,0.19858156 7.89083375,0.19858156 C9.84553833,0.19858156 11.7236551,0.895823483 13.1776809,2.12923562 L15.383868,7.10542736e-15 L16,6.85216706 L8.9001929,6.25752561 L11.554476,3.69582348 C10.5325427,2.87171001 9.23855112,2.40504334 7.89083375,2.40504334 Z M8.10916625,13.5949567 C10.9120526,13.5949567 13.2828463,11.6620961 13.7446596,9 L16,9.36516942 C15.3518611,13.0940898 12.0334357,15.8014184 8.10916625,15.8014184 C6.15446167,15.8014184 4.27634493,15.1041765 2.82231907,13.8707644 L0.616132028,16 L4.97379915e-14,9.14783294 L7.0998071,9.74247439 L4.44552404,12.3041765 C5.46745731,13.12829 6.76144888,13.5949567 8.10916625,13.5949567 Z", fill: "currentColor", fillRule: "nonzero" }))));
|
package/lib/index.d.ts
CHANGED
|
@@ -116,6 +116,7 @@ export { Diagram } from "./icons/Diagram";
|
|
|
116
116
|
export { BrizyLogo } from "./icons/BrizyLogo";
|
|
117
117
|
export { NotificationsOutlined } from "./icons/NotificationsOutlined";
|
|
118
118
|
export { Discounts } from "./icons/Discounts";
|
|
119
|
+
export { Reverse } from "./icons/Reverse";
|
|
119
120
|
export { MinistryBrandsSermonList } from "./icons/MinistryBrandsSermonList";
|
|
120
121
|
export { MinistryBrandsSermonDetail } from "./icons/MinistryBrandsSermonDetail";
|
|
121
122
|
export { MinistryBrandsSermonFeatured } from "./icons/MinistryBrandsSermonFeatured";
|
|
@@ -134,3 +135,6 @@ export { TextAlignCenter } from "./icons/TextAlignCenter";
|
|
|
134
135
|
export { TextAlignLeft } from "./icons/TextAlignLeft";
|
|
135
136
|
export { TextAlignRight } from "./icons/TextAlignRight";
|
|
136
137
|
export { TextAlignJustify } from "./icons/TextAlignJustify";
|
|
138
|
+
export { MediaImage } from "./icons/MediaImage";
|
|
139
|
+
export { MediaVideo } from "./icons/MediaVideo";
|
|
140
|
+
export { MediaMap } from "./icons/MediaMap";
|
package/lib/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
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.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.QuestionCircle = exports.PlusCircle = exports.Active = void 0;
|
|
3
|
+
exports.MediaMap = exports.MediaVideo = exports.MediaImage = 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.Reverse = 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.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");
|
|
@@ -237,6 +237,8 @@ var NotificationsOutlined_1 = require("./icons/NotificationsOutlined");
|
|
|
237
237
|
Object.defineProperty(exports, "NotificationsOutlined", { enumerable: true, get: function () { return NotificationsOutlined_1.NotificationsOutlined; } });
|
|
238
238
|
var Discounts_1 = require("./icons/Discounts");
|
|
239
239
|
Object.defineProperty(exports, "Discounts", { enumerable: true, get: function () { return Discounts_1.Discounts; } });
|
|
240
|
+
var Reverse_1 = require("./icons/Reverse");
|
|
241
|
+
Object.defineProperty(exports, "Reverse", { enumerable: true, get: function () { return Reverse_1.Reverse; } });
|
|
240
242
|
// Ministry Brands
|
|
241
243
|
var MinistryBrandsSermonList_1 = require("./icons/MinistryBrandsSermonList");
|
|
242
244
|
Object.defineProperty(exports, "MinistryBrandsSermonList", { enumerable: true, get: function () { return MinistryBrandsSermonList_1.MinistryBrandsSermonList; } });
|
|
@@ -275,3 +277,10 @@ var TextAlignRight_1 = require("./icons/TextAlignRight");
|
|
|
275
277
|
Object.defineProperty(exports, "TextAlignRight", { enumerable: true, get: function () { return TextAlignRight_1.TextAlignRight; } });
|
|
276
278
|
var TextAlignJustify_1 = require("./icons/TextAlignJustify");
|
|
277
279
|
Object.defineProperty(exports, "TextAlignJustify", { enumerable: true, get: function () { return TextAlignJustify_1.TextAlignJustify; } });
|
|
280
|
+
// Media
|
|
281
|
+
var MediaImage_1 = require("./icons/MediaImage");
|
|
282
|
+
Object.defineProperty(exports, "MediaImage", { enumerable: true, get: function () { return MediaImage_1.MediaImage; } });
|
|
283
|
+
var MediaVideo_1 = require("./icons/MediaVideo");
|
|
284
|
+
Object.defineProperty(exports, "MediaVideo", { enumerable: true, get: function () { return MediaVideo_1.MediaVideo; } });
|
|
285
|
+
var MediaMap_1 = require("./icons/MediaMap");
|
|
286
|
+
Object.defineProperty(exports, "MediaMap", { enumerable: true, get: function () { return MediaMap_1.MediaMap; } });
|
package/package-lock.json
CHANGED