a-icons 1.1.69 → 1.1.71
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/PersonWarningFilled.d.ts +6 -0
- package/es/PersonWarningFilled.js +40 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/PersonWarningFilled.d.ts +6 -0
- package/lib/PersonWarningFilled.js +83 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +10 -3
- package/package.json +2 -2
- package/src/PersonWarningFilled.tsx +30 -0
- package/src/index.tsx +1 -0
- package/svgs/filled/person-warning-filled.svg +11 -0
- package/tmpAllSvgs/person-warning-filled.svg +11 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) {
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
import * as React from 'react';
|
|
14
|
+
import Icon from 'a-base-icon/lib/icon';
|
|
15
|
+
function PersonWarningFilled(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
20
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
d: "M10.781 11.17h-.997a3.988 3.988 0 01-3.988-3.988V4.55a3.34 3.34 0 013.35-3.35h2.273a3.34 3.34 0 013.35 3.35v2.632a3.988 3.988 0 01-3.988 3.988z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
clipRule: "evenodd",
|
|
26
|
+
d: "M12.959 12.83H5.886a3.28 3.28 0 00-3.16 2.702l-.24 1.136a3.38 3.38 0 003.17 4.138h5.76a6.619 6.619 0 01-.708-2.99 6.63 6.63 0 012.25-4.986z",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
fillRule: "evenodd",
|
|
30
|
+
clipRule: "evenodd",
|
|
31
|
+
d: "M17.354 22.8a4.985 4.985 0 100-9.97 4.985 4.985 0 000 9.97zM17 15h1v4h-1v-4zm1 5h-1v1h1v-1z",
|
|
32
|
+
fill: "currentColor"
|
|
33
|
+
}));
|
|
34
|
+
};
|
|
35
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
36
|
+
component: IconNode
|
|
37
|
+
}));
|
|
38
|
+
}
|
|
39
|
+
PersonWarningFilled.displayName = 'PersonWarningFilled';
|
|
40
|
+
export default PersonWarningFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -239,6 +239,7 @@ export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
|
|
|
239
239
|
export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
240
240
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
241
241
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
242
|
+
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
242
243
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
243
244
|
export { default as PlayFilled } from './PlayFilled';
|
|
244
245
|
export { default as PlusFilled } from './PlusFilled';
|
package/es/index.js
CHANGED
|
@@ -239,6 +239,7 @@ export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
|
|
|
239
239
|
export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
240
240
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
241
241
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
242
|
+
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
242
243
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
243
244
|
export { default as PlayFilled } from './PlayFilled';
|
|
244
245
|
export { default as PlusFilled } from './PlusFilled';
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __assign = this && this.__assign || function () {
|
|
4
|
+
__assign = Object.assign || function (t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
for (var p in s) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
return __assign.apply(this, arguments);
|
|
14
|
+
};
|
|
15
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function get() {
|
|
22
|
+
return m[k];
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
Object.defineProperty(o, k2, desc);
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
32
|
+
Object.defineProperty(o, "default", {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
value: v
|
|
35
|
+
});
|
|
36
|
+
} : function (o, v) {
|
|
37
|
+
o["default"] = v;
|
|
38
|
+
});
|
|
39
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
40
|
+
if (mod && mod.__esModule) return mod;
|
|
41
|
+
var result = {};
|
|
42
|
+
if (mod != null) for (var k in mod) {
|
|
43
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
44
|
+
}
|
|
45
|
+
__setModuleDefault(result, mod);
|
|
46
|
+
return result;
|
|
47
|
+
};
|
|
48
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
49
|
+
return mod && mod.__esModule ? mod : {
|
|
50
|
+
"default": mod
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
Object.defineProperty(exports, "__esModule", {
|
|
54
|
+
value: true
|
|
55
|
+
});
|
|
56
|
+
var React = __importStar(require("react"));
|
|
57
|
+
var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
|
|
58
|
+
function PersonWarningFilled(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
63
|
+
}, props), React.createElement("path", {
|
|
64
|
+
d: "M10.781 11.17h-.997a3.988 3.988 0 01-3.988-3.988V4.55a3.34 3.34 0 013.35-3.35h2.273a3.34 3.34 0 013.35 3.35v2.632a3.988 3.988 0 01-3.988 3.988z",
|
|
65
|
+
fill: "currentColor"
|
|
66
|
+
}), React.createElement("path", {
|
|
67
|
+
fillRule: "evenodd",
|
|
68
|
+
clipRule: "evenodd",
|
|
69
|
+
d: "M12.959 12.83H5.886a3.28 3.28 0 00-3.16 2.702l-.24 1.136a3.38 3.38 0 003.17 4.138h5.76a6.619 6.619 0 01-.708-2.99 6.63 6.63 0 012.25-4.986z",
|
|
70
|
+
fill: "currentColor"
|
|
71
|
+
}), React.createElement("path", {
|
|
72
|
+
fillRule: "evenodd",
|
|
73
|
+
clipRule: "evenodd",
|
|
74
|
+
d: "M17.354 22.8a4.985 4.985 0 100-9.97 4.985 4.985 0 000 9.97zM17 15h1v4h-1v-4zm1 5h-1v1h1v-1z",
|
|
75
|
+
fill: "currentColor"
|
|
76
|
+
}));
|
|
77
|
+
};
|
|
78
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
79
|
+
component: IconNode
|
|
80
|
+
}));
|
|
81
|
+
}
|
|
82
|
+
PersonWarningFilled.displayName = 'PersonWarningFilled';
|
|
83
|
+
exports["default"] = PersonWarningFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -239,6 +239,7 @@ export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
|
|
|
239
239
|
export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
240
240
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
241
241
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
242
|
+
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
242
243
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
243
244
|
export { default as PlayFilled } from './PlayFilled';
|
|
244
245
|
export { default as PlusFilled } from './PlusFilled';
|
package/lib/index.js
CHANGED
|
@@ -12,9 +12,9 @@ exports.CellPhoneCallFilled = exports.CategoryOutlined = exports.CategoryFilled
|
|
|
12
12
|
exports.DotCalenderOutlined = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DashboardOutlined = exports.DashboardFilled = exports.CyclePlusFilled = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockOutline = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CirculationFilled = exports.CircleStopFilled = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = void 0;
|
|
13
13
|
exports.FundProjectionScreenFilled = exports.FourDotOutlined = exports.FourDotFilled = exports.FormOutlined = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FoldSearchFileFilled = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FilletFileListFilled = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.FileDownloadLineOutlined = exports.FileBottomArrowOutlined = exports.FacebookFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.EyeCornerFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EmailWithTextFilled = exports.EditSimpleOutlined = exports.EditFilled = exports.Edit2Filled = exports.EcLogo = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = exports.DownloadReportOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownlaodAppOutlined = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = void 0;
|
|
14
14
|
exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.LoadingFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinksOutlined = exports.LinkedinFilled = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InviteFriendFilled = exports.InsFilled = exports.InformationOutlined = exports.InformationFilled = exports.ImportOutlined = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = exports.HomeWifiOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftWithClipFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = void 0;
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
17
|
-
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UserOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = void 0;
|
|
15
|
+
exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PersonWarningFilled = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleErrorFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.OtcMerchant = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OppositeArrowsFilled = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.OfficeBagOutlined = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = exports.NoteOutlined = exports.NoteFilled = exports.NoteBoardOutlined = exports.NoteBoardFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MinusSquareOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = void 0;
|
|
16
|
+
exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareBoxOutlined = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerOutlined = exports.SpeakerFilled = exports.SiteMapOutlined = exports.SimpleEarthOutlined = exports.SignalOutlined = exports.SignalFilled = exports.SignalDiffusionOutlined = exports.SignBankCardFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldTickAsteriskFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentOutlined = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RingDotsFilled = exports.RetryRefreshFilled = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectForkFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = void 0;
|
|
17
|
+
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UserOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareUpRightOutlined = void 0;
|
|
18
18
|
var DailyFinanceFilled_1 = require("./DailyFinanceFilled");
|
|
19
19
|
Object.defineProperty(exports, "DailyFinanceFilled", {
|
|
20
20
|
enumerable: true,
|
|
@@ -1702,6 +1702,13 @@ Object.defineProperty(exports, "PeopleTeamOutlined", {
|
|
|
1702
1702
|
return __importDefault(PeopleTeamOutlined_1)["default"];
|
|
1703
1703
|
}
|
|
1704
1704
|
});
|
|
1705
|
+
var PersonWarningFilled_1 = require("./PersonWarningFilled");
|
|
1706
|
+
Object.defineProperty(exports, "PersonWarningFilled", {
|
|
1707
|
+
enumerable: true,
|
|
1708
|
+
get: function get() {
|
|
1709
|
+
return __importDefault(PersonWarningFilled_1)["default"];
|
|
1710
|
+
}
|
|
1711
|
+
});
|
|
1705
1712
|
var PhoneOutlined_1 = require("./PhoneOutlined");
|
|
1706
1713
|
Object.defineProperty(exports, "PhoneOutlined", {
|
|
1707
1714
|
enumerable: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.71",
|
|
4
4
|
"repository": "git@github.com:SPOTEC-LTD/assui.git",
|
|
5
5
|
"author": "jason <usochen@gmail.com>",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"assui": "^2.0.2"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "5292bf7971a009779863aa9fba8a2f6dd57479db"
|
|
26
26
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function PersonWarningFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M10.781 11.17h-.997a3.988 3.988 0 01-3.988-3.988V4.55a3.34 3.34 0 013.35-3.35h2.273a3.34 3.34 0 013.35 3.35v2.632a3.988 3.988 0 01-3.988 3.988z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
fillRule="evenodd"
|
|
13
|
+
clipRule="evenodd"
|
|
14
|
+
d="M12.959 12.83H5.886a3.28 3.28 0 00-3.16 2.702l-.24 1.136a3.38 3.38 0 003.17 4.138h5.76a6.619 6.619 0 01-.708-2.99 6.63 6.63 0 012.25-4.986z"
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
fillRule="evenodd"
|
|
19
|
+
clipRule="evenodd"
|
|
20
|
+
d="M17.354 22.8a4.985 4.985 0 100-9.97 4.985 4.985 0 000 9.97zM17 15h1v4h-1v-4zm1 5h-1v1h1v-1z"
|
|
21
|
+
fill="currentColor"
|
|
22
|
+
/>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
PersonWarningFilled.displayName = 'PersonWarningFilled';
|
|
30
|
+
export default PersonWarningFilled;
|
package/src/index.tsx
CHANGED
|
@@ -239,6 +239,7 @@ export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
|
|
|
239
239
|
export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
240
240
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
241
241
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
242
|
+
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
242
243
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
243
244
|
export { default as PlayFilled } from './PlayFilled';
|
|
244
245
|
export { default as PlusFilled } from './PlusFilled';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M10.781 11.1696H9.78409C7.58172 11.1696 5.79634 9.38421 5.79634 7.18184V4.54992C5.79368 3.66071 6.14574 2.80715 6.77451 2.17838C7.40328 1.54961 8.25684 1.19755 9.14605 1.20021H11.4191C12.3083 1.19755 13.1618 1.54961 13.7906 2.17838C14.4194 2.80715 14.7714 3.66071 14.7688 4.54992V7.18184C14.7688 8.23946 14.3486 9.25376 13.6008 10.0016C12.8529 10.7495 11.8386 11.1696 10.781 11.1696Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
+
d="M12.9587 12.8301H5.88615C4.32357 12.8627 3.00105 13.9933 2.72586 15.5318L2.48659 16.6683C2.25985 17.6509 2.48373 18.6834 3.09706 19.4838C3.7104 20.2842 4.64912 20.7689 5.65685 20.8056H11.4169C10.9634 19.9068 10.7079 18.891 10.7079 17.8155C10.7079 15.83 11.5785 14.0479 12.9587 12.8301Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
9
|
+
d="M17.3542 22.7995C20.1072 22.7995 22.3389 20.5677 22.3389 17.8148C22.3389 15.0618 20.1072 12.8301 17.3542 12.8301C14.6012 12.8301 12.3695 15.0618 12.3695 17.8148C12.3695 20.5677 14.6012 22.7995 17.3542 22.7995ZM17 15H18V19H17V15ZM18 20H17V21H18V20Z"
|
|
10
|
+
fill="currentColor" />
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M10.781 11.1696H9.78409C7.58172 11.1696 5.79634 9.38421 5.79634 7.18184V4.54992C5.79368 3.66071 6.14574 2.80715 6.77451 2.17838C7.40328 1.54961 8.25684 1.19755 9.14605 1.20021H11.4191C12.3083 1.19755 13.1618 1.54961 13.7906 2.17838C14.4194 2.80715 14.7714 3.66071 14.7688 4.54992V7.18184C14.7688 8.23946 14.3486 9.25376 13.6008 10.0016C12.8529 10.7495 11.8386 11.1696 10.781 11.1696Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
+
d="M12.9587 12.8301H5.88615C4.32357 12.8627 3.00105 13.9933 2.72586 15.5318L2.48659 16.6683C2.25985 17.6509 2.48373 18.6834 3.09706 19.4838C3.7104 20.2842 4.64912 20.7689 5.65685 20.8056H11.4169C10.9634 19.9068 10.7079 18.891 10.7079 17.8155C10.7079 15.83 11.5785 14.0479 12.9587 12.8301Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
9
|
+
d="M17.3542 22.7995C20.1072 22.7995 22.3389 20.5677 22.3389 17.8148C22.3389 15.0618 20.1072 12.8301 17.3542 12.8301C14.6012 12.8301 12.3695 15.0618 12.3695 17.8148C12.3695 20.5677 14.6012 22.7995 17.3542 22.7995ZM17 15H18V19H17V15ZM18 20H17V21H18V20Z"
|
|
10
|
+
fill="currentColor" />
|
|
11
|
+
</svg>
|