@brizy/ui-icons 0.0.37 → 0.0.38
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/QuestionCircleOutlined.d.ts +2 -0
- package/es/icons/QuestionCircleOutlined.js +6 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/icons/QuestionCircleOutlined.d.ts +2 -0
- package/lib/icons/QuestionCircleOutlined.js +12 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +3 -1
- package/package-lock.json +1 -1
- package/package.json +1 -2
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export const QuestionCircleOutlined = () => (React.createElement("svg", { width: "1em", height: "1em", viewBox: "0 0 16 16" },
|
|
3
|
+
React.createElement("g", { fill: "currentColor", fillRule: "nonzero" },
|
|
4
|
+
React.createElement("path", { d: "M8 0a8 8 0 1 0 8 8 8.024 8.024 0 0 0-8-8Zm0 14a6 6 0 1 1 6-6 6.018 6.018 0 0 1-6 6Z" }),
|
|
5
|
+
React.createElement("circle", { cx: 8, cy: 12, r: 1 }),
|
|
6
|
+
React.createElement("path", { d: "M8 10a1 1 0 0 1-1-1 3.056 3.056 0 0 1 1.322-2.427c.5-.425.622-.57.622-.906 0-.183 0-.667-.944-.667a2.046 2.046 0 0 0-1.258.561 1 1 0 0 1-1.373-1.456A4.081 4.081 0 0 1 7.948 3a2.68 2.68 0 0 1 2.993 2.666 3.054 3.054 0 0 1-1.318 2.426C9.126 8.519 9 8.663 9 9a1 1 0 0 1-1 1Z" }))));
|
package/es/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { Active } from "./icons/Active";
|
|
2
2
|
export { PlusCircle } from "./icons/PlusCircle";
|
|
3
3
|
export { QuestionCircle } from "./icons/QuestionCircle";
|
|
4
|
+
export { QuestionCircleOutlined } from "./icons/QuestionCircleOutlined";
|
|
4
5
|
export { AlignHorizontal } from "./icons/AlignHorizontal";
|
|
5
6
|
export { ArrowRight } from "./icons/ArrowRight";
|
|
6
7
|
export { Blocks } from "./icons/Blocks";
|
package/es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { Active } from "./icons/Active";
|
|
2
2
|
export { PlusCircle } from "./icons/PlusCircle";
|
|
3
3
|
export { QuestionCircle } from "./icons/QuestionCircle";
|
|
4
|
+
export { QuestionCircleOutlined } from "./icons/QuestionCircleOutlined";
|
|
4
5
|
export { AlignHorizontal } from "./icons/AlignHorizontal";
|
|
5
6
|
export { ArrowRight } from "./icons/ArrowRight";
|
|
6
7
|
export { Blocks } from "./icons/Blocks";
|
|
@@ -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.QuestionCircleOutlined = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
exports.QuestionCircleOutlined = () => (react_1.default.createElement("svg", { width: "1em", height: "1em", viewBox: "0 0 16 16" },
|
|
9
|
+
react_1.default.createElement("g", { fill: "currentColor", fillRule: "nonzero" },
|
|
10
|
+
react_1.default.createElement("path", { d: "M8 0a8 8 0 1 0 8 8 8.024 8.024 0 0 0-8-8Zm0 14a6 6 0 1 1 6-6 6.018 6.018 0 0 1-6 6Z" }),
|
|
11
|
+
react_1.default.createElement("circle", { cx: 8, cy: 12, r: 1 }),
|
|
12
|
+
react_1.default.createElement("path", { d: "M8 10a1 1 0 0 1-1-1 3.056 3.056 0 0 1 1.322-2.427c.5-.425.622-.57.622-.906 0-.183 0-.667-.944-.667a2.046 2.046 0 0 0-1.258.561 1 1 0 0 1-1.373-1.456A4.081 4.081 0 0 1 7.948 3a2.68 2.68 0 0 1 2.993 2.666 3.054 3.054 0 0 1-1.318 2.426C9.126 8.519 9 8.663 9 9a1 1 0 0 1-1 1Z" }))));
|
package/lib/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { Active } from "./icons/Active";
|
|
2
2
|
export { PlusCircle } from "./icons/PlusCircle";
|
|
3
3
|
export { QuestionCircle } from "./icons/QuestionCircle";
|
|
4
|
+
export { QuestionCircleOutlined } from "./icons/QuestionCircleOutlined";
|
|
4
5
|
export { AlignHorizontal } from "./icons/AlignHorizontal";
|
|
5
6
|
export { ArrowRight } from "./icons/ArrowRight";
|
|
6
7
|
export { Blocks } from "./icons/Blocks";
|
package/lib/index.js
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
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.Unlock = exports.Circle2 = exports.CircleRemove = exports.StreDown = exports.StreUp = 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;
|
|
3
|
+
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.Unlock = exports.Circle2 = exports.CircleRemove = exports.StreDown = exports.StreUp = 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.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");
|
|
7
7
|
Object.defineProperty(exports, "PlusCircle", { enumerable: true, get: function () { return PlusCircle_1.PlusCircle; } });
|
|
8
8
|
var QuestionCircle_1 = require("./icons/QuestionCircle");
|
|
9
9
|
Object.defineProperty(exports, "QuestionCircle", { enumerable: true, get: function () { return QuestionCircle_1.QuestionCircle; } });
|
|
10
|
+
var QuestionCircleOutlined_1 = require("./icons/QuestionCircleOutlined");
|
|
11
|
+
Object.defineProperty(exports, "QuestionCircleOutlined", { enumerable: true, get: function () { return QuestionCircleOutlined_1.QuestionCircleOutlined; } });
|
|
10
12
|
var AlignHorizontal_1 = require("./icons/AlignHorizontal");
|
|
11
13
|
Object.defineProperty(exports, "AlignHorizontal", { enumerable: true, get: function () { return AlignHorizontal_1.AlignHorizontal; } });
|
|
12
14
|
var ArrowRight_1 = require("./icons/ArrowRight");
|
package/package-lock.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brizy/ui-icons",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.38",
|
|
4
4
|
"description": "Icons for @brizy-ui",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -48,7 +48,6 @@
|
|
|
48
48
|
"docz": "^2.3.1"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"typescript": "3",
|
|
52
51
|
"react": ">=16.9.0",
|
|
53
52
|
"react-dom": ">=16.9.0"
|
|
54
53
|
}
|