a-icons 1.2.7 → 1.2.9

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.
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function PersonLeftArrowFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace PersonLeftArrowFilled {
4
+ var displayName: string;
5
+ }
6
+ export default PersonLeftArrowFilled;
@@ -0,0 +1,30 @@
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 PersonLeftArrowFilled(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: "M14.5 7a5 5 0 11-10 0 5 5 0 0110 0zM22.707 17.293L19 13.586 17.586 15l2 2H15v2h4.586l-2 2L19 22.414l3.707-3.707a1 1 0 000-1.414zM6 14a5 5 0 00-5 5v3h12v-8H6zM17 7a3.001 3.001 0 01-2 2.83v2.07a5.002 5.002 0 000-9.8v2.07c1.165.413 2 1.524 2 2.83z",
22
+ fill: "currentColor"
23
+ }));
24
+ };
25
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
26
+ component: IconNode
27
+ }));
28
+ }
29
+ PersonLeftArrowFilled.displayName = 'PersonLeftArrowFilled';
30
+ export default PersonLeftArrowFilled;
@@ -18,12 +18,12 @@ function TrashCanFilled(componentProps) {
18
18
  viewBox: "0 0 24 24",
19
19
  xmlns: "http://www.w3.org/2000/svg"
20
20
  }, props), /*#__PURE__*/React.createElement("path", {
21
- d: "M16 2H8v2h8V2z",
21
+ d: "M16.333 1H7.667v2h8.666V1z",
22
22
  fill: "currentColor"
23
23
  }), /*#__PURE__*/React.createElement("path", {
24
24
  fillRule: "evenodd",
25
25
  clipRule: "evenodd",
26
- d: "M2 5h20v2h-2.064l-.642 9.625c-.05.756-.092 1.381-.167 1.89-.078.53-.201 1.014-.458 1.465a4 4 0 01-1.731 1.62c-.467.226-.959.317-1.493.36-.512.04-1.139.04-1.896.04h-3.098c-.757 0-1.384 0-1.896-.04-.534-.043-1.025-.134-1.493-.36a4 4 0 01-1.73-1.62c-.258-.451-.381-.935-.46-1.465-.074-.509-.116-1.134-.166-1.89L4.064 7H2V5zm7 11.5h2v-7H9v7zm4 0h2v-7h-2v7z",
26
+ d: "M1 4.333h22v2h-2.287l-.72 10.795c-.055.843-.101 1.534-.184 2.095-.085.582-.22 1.104-.496 1.589a4.334 4.334 0 01-1.875 1.754c-.502.243-1.032.343-1.619.39-.565.044-1.257.044-2.102.044h-3.434c-.845 0-1.537 0-2.102-.045-.587-.046-1.117-.146-1.619-.389a4.333 4.333 0 01-1.875-1.754c-.276-.485-.41-1.007-.496-1.59-.082-.56-.129-1.251-.185-2.094l-.72-10.795H1v-2zM8.778 16.89h2V9.333h-2v7.556zm4.444 0h2V9.333h-2v7.556z",
27
27
  fill: "currentColor"
28
28
  }));
29
29
  };
package/es/index.d.ts CHANGED
@@ -248,6 +248,7 @@ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
248
248
  export { default as PeopleTeamFilled } from './PeopleTeamFilled';
249
249
  export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
250
250
  export { default as PersonGroupFilled } from './PersonGroupFilled';
251
+ export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
251
252
  export { default as PersonWarningFilled } from './PersonWarningFilled';
252
253
  export { default as PhoneOutlined } from './PhoneOutlined';
253
254
  export { default as PlayFilled } from './PlayFilled';
package/es/index.js CHANGED
@@ -248,6 +248,7 @@ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
248
248
  export { default as PeopleTeamFilled } from './PeopleTeamFilled';
249
249
  export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
250
250
  export { default as PersonGroupFilled } from './PersonGroupFilled';
251
+ export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
251
252
  export { default as PersonWarningFilled } from './PersonWarningFilled';
252
253
  export { default as PhoneOutlined } from './PhoneOutlined';
253
254
  export { default as PlayFilled } from './PlayFilled';
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function PersonLeftArrowFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace PersonLeftArrowFilled {
4
+ var displayName: string;
5
+ }
6
+ export default PersonLeftArrowFilled;
@@ -0,0 +1,73 @@
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 PersonLeftArrowFilled(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: "M14.5 7a5 5 0 11-10 0 5 5 0 0110 0zM22.707 17.293L19 13.586 17.586 15l2 2H15v2h4.586l-2 2L19 22.414l3.707-3.707a1 1 0 000-1.414zM6 14a5 5 0 00-5 5v3h12v-8H6zM17 7a3.001 3.001 0 01-2 2.83v2.07a5.002 5.002 0 000-9.8v2.07c1.165.413 2 1.524 2 2.83z",
65
+ fill: "currentColor"
66
+ }));
67
+ };
68
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
69
+ component: IconNode
70
+ }));
71
+ }
72
+ PersonLeftArrowFilled.displayName = 'PersonLeftArrowFilled';
73
+ exports["default"] = PersonLeftArrowFilled;
@@ -61,12 +61,12 @@ function TrashCanFilled(componentProps) {
61
61
  viewBox: "0 0 24 24",
62
62
  xmlns: "http://www.w3.org/2000/svg"
63
63
  }, props), React.createElement("path", {
64
- d: "M16 2H8v2h8V2z",
64
+ d: "M16.333 1H7.667v2h8.666V1z",
65
65
  fill: "currentColor"
66
66
  }), React.createElement("path", {
67
67
  fillRule: "evenodd",
68
68
  clipRule: "evenodd",
69
- d: "M2 5h20v2h-2.064l-.642 9.625c-.05.756-.092 1.381-.167 1.89-.078.53-.201 1.014-.458 1.465a4 4 0 01-1.731 1.62c-.467.226-.959.317-1.493.36-.512.04-1.139.04-1.896.04h-3.098c-.757 0-1.384 0-1.896-.04-.534-.043-1.025-.134-1.493-.36a4 4 0 01-1.73-1.62c-.258-.451-.381-.935-.46-1.465-.074-.509-.116-1.134-.166-1.89L4.064 7H2V5zm7 11.5h2v-7H9v7zm4 0h2v-7h-2v7z",
69
+ d: "M1 4.333h22v2h-2.287l-.72 10.795c-.055.843-.101 1.534-.184 2.095-.085.582-.22 1.104-.496 1.589a4.334 4.334 0 01-1.875 1.754c-.502.243-1.032.343-1.619.39-.565.044-1.257.044-2.102.044h-3.434c-.845 0-1.537 0-2.102-.045-.587-.046-1.117-.146-1.619-.389a4.333 4.333 0 01-1.875-1.754c-.276-.485-.41-1.007-.496-1.59-.082-.56-.129-1.251-.185-2.094l-.72-10.795H1v-2zM8.778 16.89h2V9.333h-2v7.556zm4.444 0h2V9.333h-2v7.556z",
70
70
  fill: "currentColor"
71
71
  }));
72
72
  };
package/lib/index.d.ts CHANGED
@@ -248,6 +248,7 @@ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
248
248
  export { default as PeopleTeamFilled } from './PeopleTeamFilled';
249
249
  export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
250
250
  export { default as PersonGroupFilled } from './PersonGroupFilled';
251
+ export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
251
252
  export { default as PersonWarningFilled } from './PersonWarningFilled';
252
253
  export { default as PhoneOutlined } from './PhoneOutlined';
253
254
  export { default as PlayFilled } from './PlayFilled';
package/lib/index.js CHANGED
@@ -13,8 +13,8 @@ exports.DataPanelOutlined = exports.DashboardOutlined = exports.DashboardFilled
13
13
  exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FilletFileListFilled = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = 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.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownloadFilled = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DescOutlined = void 0;
14
14
  exports.LockFilled = exports.LockEllipsisFilled = exports.LoadingFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = 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.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IbFilled = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsOutlined = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftWithClipFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FourDotOutlined = exports.FourDotFilled = exports.FormOutlined = exports.ForbidFireOutlined = exports.ForbidFireFilled = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FoldSearchFileFilled = exports.FireOutlined = exports.FireFilled = void 0;
15
15
  exports.PersonGroupFilled = 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.PauseCircleFilled = 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 = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = void 0;
16
- exports.SignalFilled = exports.SignalDiffusionOutlined = exports.SignalDiffusionFilled = 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.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 = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlusBoldSquareFilled = exports.PlaySolidFilled = exports.PlaySharpFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PersonWarningFilled = void 0;
17
- exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UpgradeFilled = exports.UpFilled = exports.UnlockFilled = exports.UnbindChainOutlined = exports.UnbindChainFilled = exports.TwoPersonConfirmFilled = exports.TwoPeopleRectOutlined = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashCanFilled = exports.TransferFileFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SimpleEarthOutlined = exports.SignalOutlined = exports.SignalLineOutlined = void 0;
16
+ exports.SignalDiffusionOutlined = exports.SignalDiffusionFilled = 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.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 = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlusBoldSquareFilled = exports.PlaySolidFilled = exports.PlaySharpFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PersonWarningFilled = exports.PersonLeftArrowFilled = void 0;
17
+ exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UpgradeFilled = exports.UpFilled = exports.UnlockFilled = exports.UnbindChainOutlined = exports.UnbindChainFilled = exports.TwoPersonConfirmFilled = exports.TwoPeopleRectOutlined = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashCanFilled = exports.TransferFileFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SimpleEarthOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalFilled = void 0;
18
18
  var DailyFinanceFilled_1 = require("./DailyFinanceFilled");
19
19
  Object.defineProperty(exports, "DailyFinanceFilled", {
20
20
  enumerable: true,
@@ -1765,6 +1765,13 @@ Object.defineProperty(exports, "PersonGroupFilled", {
1765
1765
  return __importDefault(PersonGroupFilled_1)["default"];
1766
1766
  }
1767
1767
  });
1768
+ var PersonLeftArrowFilled_1 = require("./PersonLeftArrowFilled");
1769
+ Object.defineProperty(exports, "PersonLeftArrowFilled", {
1770
+ enumerable: true,
1771
+ get: function get() {
1772
+ return __importDefault(PersonLeftArrowFilled_1)["default"];
1773
+ }
1774
+ });
1768
1775
  var PersonWarningFilled_1 = require("./PersonWarningFilled");
1769
1776
  Object.defineProperty(exports, "PersonWarningFilled", {
1770
1777
  enumerable: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.2.7",
3
+ "version": "1.2.9",
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": "4269ff1e6b1bd9cca776652f1b84f276128d58d6"
25
+ "gitHead": "d5fb717d91bf69d7fc029e528491c741c4b1ed86"
26
26
  }
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function PersonLeftArrowFilled(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="M14.5 7a5 5 0 11-10 0 5 5 0 0110 0zM22.707 17.293L19 13.586 17.586 15l2 2H15v2h4.586l-2 2L19 22.414l3.707-3.707a1 1 0 000-1.414zM6 14a5 5 0 00-5 5v3h12v-8H6zM17 7a3.001 3.001 0 01-2 2.83v2.07a5.002 5.002 0 000-9.8v2.07c1.165.413 2 1.524 2 2.83z"
9
+ fill="currentColor"
10
+ />
11
+ </svg>
12
+ );
13
+
14
+ return <Icon {...componentProps} component={IconNode} />;
15
+ }
16
+
17
+ PersonLeftArrowFilled.displayName = 'PersonLeftArrowFilled';
18
+ export default PersonLeftArrowFilled;
@@ -4,11 +4,11 @@ import Icon, { IconProps } from 'a-base-icon/lib/icon';
4
4
  function TrashCanFilled(componentProps: IconProps) {
5
5
  const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
6
  <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
7
- <path d="M16 2H8v2h8V2z" fill="currentColor" />
7
+ <path d="M16.333 1H7.667v2h8.666V1z" fill="currentColor" />
8
8
  <path
9
9
  fillRule="evenodd"
10
10
  clipRule="evenodd"
11
- d="M2 5h20v2h-2.064l-.642 9.625c-.05.756-.092 1.381-.167 1.89-.078.53-.201 1.014-.458 1.465a4 4 0 01-1.731 1.62c-.467.226-.959.317-1.493.36-.512.04-1.139.04-1.896.04h-3.098c-.757 0-1.384 0-1.896-.04-.534-.043-1.025-.134-1.493-.36a4 4 0 01-1.73-1.62c-.258-.451-.381-.935-.46-1.465-.074-.509-.116-1.134-.166-1.89L4.064 7H2V5zm7 11.5h2v-7H9v7zm4 0h2v-7h-2v7z"
11
+ d="M1 4.333h22v2h-2.287l-.72 10.795c-.055.843-.101 1.534-.184 2.095-.085.582-.22 1.104-.496 1.589a4.334 4.334 0 01-1.875 1.754c-.502.243-1.032.343-1.619.39-.565.044-1.257.044-2.102.044h-3.434c-.845 0-1.537 0-2.102-.045-.587-.046-1.117-.146-1.619-.389a4.333 4.333 0 01-1.875-1.754c-.276-.485-.41-1.007-.496-1.59-.082-.56-.129-1.251-.185-2.094l-.72-10.795H1v-2zM8.778 16.89h2V9.333h-2v7.556zm4.444 0h2V9.333h-2v7.556z"
12
12
  fill="currentColor"
13
13
  />
14
14
  </svg>
package/src/index.tsx CHANGED
@@ -248,6 +248,7 @@ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
248
248
  export { default as PeopleTeamFilled } from './PeopleTeamFilled';
249
249
  export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
250
250
  export { default as PersonGroupFilled } from './PersonGroupFilled';
251
+ export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
251
252
  export { default as PersonWarningFilled } from './PersonWarningFilled';
252
253
  export { default as PhoneOutlined } from './PhoneOutlined';
253
254
  export { default as PlayFilled } from './PlayFilled';
@@ -0,0 +1,12 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M14.5 7C14.5 9.76142 12.2614 12 9.5 12C6.73858 12 4.5 9.76142 4.5 7C4.5 4.23858 6.73858 2 9.5 2C12.2614 2 14.5 4.23858 14.5 7Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M22.7071 17.2929L19 13.5858L17.5858 15L19.5858 17H15V19H19.5858L17.5858 21L19 22.4142L22.7071 18.7071C23.0976 18.3166 23.0976 17.6834 22.7071 17.2929Z"
7
+ fill="currentColor" />
8
+ <path d="M6 14C3.23858 14 1 16.2386 1 19V22H13V14H6Z" fill="currentColor" />
9
+ <path
10
+ d="M17 7C17 8.30622 16.1652 9.41746 15 9.82929V11.9C17.2822 11.4367 19 9.41896 19 7C19 4.58104 17.2822 2.56329 15 2.10002V4.17071C16.1652 4.58254 17 5.69378 17 7Z"
11
+ fill="currentColor" />
12
+ </svg>
@@ -1,6 +1,6 @@
1
1
  <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M16 2H8V4H16V2Z" fill="currentColor" />
2
+ <path d="M16.3333 1H7.66667V3H16.3333V1Z" fill="currentColor" />
3
3
  <path fill-rule="evenodd" clip-rule="evenodd"
4
- d="M2 5H22V7H19.9356L19.2939 16.6253C19.2435 17.3808 19.2018 18.006 19.1271 18.5149C19.0493 19.0447 18.926 19.5288 18.6689 19.98C18.2688 20.6824 17.6652 21.247 16.9378 21.5996C16.4705 21.826 15.9792 21.917 15.4454 21.9593C14.9327 22 14.3062 22 13.5491 22H10.4509C9.69383 22 9.06728 22 8.55459 21.9593C8.0208 21.917 7.52952 21.826 7.06223 21.5996C6.33479 21.247 5.73123 20.6824 5.33109 19.98C5.07405 19.5288 4.95066 19.0447 4.87287 18.5149C4.79816 18.006 4.75649 17.3809 4.70614 16.6254L4.06445 7H2V5ZM9 16.5H11V9.5H9V16.5ZM13 16.5H15V9.5H13V16.5Z"
4
+ d="M1 4.33333H23V6.33333H20.7133L19.9937 17.1281C19.9375 17.9708 19.8915 18.6616 19.8091 19.2226C19.7237 19.8046 19.5893 20.3272 19.3134 20.8117C18.8799 21.5726 18.226 22.1843 17.438 22.5662C16.9362 22.8094 16.4058 22.9086 15.8194 22.9552C15.2542 23 14.5619 23 13.7174 23H10.2826C9.43813 23 8.74577 23 8.18056 22.9552C7.59422 22.9086 7.06377 22.8094 6.56205 22.5662C5.77399 22.1843 5.12013 21.5726 4.68665 20.8117C4.41066 20.3272 4.27635 19.8046 4.1909 19.2226C4.10854 18.6616 4.06249 17.9708 4.00632 17.1282L3.28667 6.33333H1V4.33333ZM8.77783 16.8888H10.7778V9.33325H8.77783V16.8888ZM13.2223 16.8888H15.2223V9.33325H13.2223V16.8888Z"
5
5
  fill="currentColor" />
6
- </svg>
6
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M14.5 7C14.5 9.76142 12.2614 12 9.5 12C6.73858 12 4.5 9.76142 4.5 7C4.5 4.23858 6.73858 2 9.5 2C12.2614 2 14.5 4.23858 14.5 7Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M22.7071 17.2929L19 13.5858L17.5858 15L19.5858 17H15V19H19.5858L17.5858 21L19 22.4142L22.7071 18.7071C23.0976 18.3166 23.0976 17.6834 22.7071 17.2929Z"
7
+ fill="currentColor" />
8
+ <path d="M6 14C3.23858 14 1 16.2386 1 19V22H13V14H6Z" fill="currentColor" />
9
+ <path
10
+ d="M17 7C17 8.30622 16.1652 9.41746 15 9.82929V11.9C17.2822 11.4367 19 9.41896 19 7C19 4.58104 17.2822 2.56329 15 2.10002V4.17071C16.1652 4.58254 17 5.69378 17 7Z"
11
+ fill="currentColor" />
12
+ </svg>
@@ -1,6 +1,6 @@
1
1
  <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M16 2H8V4H16V2Z" fill="currentColor" />
2
+ <path d="M16.3333 1H7.66667V3H16.3333V1Z" fill="currentColor" />
3
3
  <path fill-rule="evenodd" clip-rule="evenodd"
4
- d="M2 5H22V7H19.9356L19.2939 16.6253C19.2435 17.3808 19.2018 18.006 19.1271 18.5149C19.0493 19.0447 18.926 19.5288 18.6689 19.98C18.2688 20.6824 17.6652 21.247 16.9378 21.5996C16.4705 21.826 15.9792 21.917 15.4454 21.9593C14.9327 22 14.3062 22 13.5491 22H10.4509C9.69383 22 9.06728 22 8.55459 21.9593C8.0208 21.917 7.52952 21.826 7.06223 21.5996C6.33479 21.247 5.73123 20.6824 5.33109 19.98C5.07405 19.5288 4.95066 19.0447 4.87287 18.5149C4.79816 18.006 4.75649 17.3809 4.70614 16.6254L4.06445 7H2V5ZM9 16.5H11V9.5H9V16.5ZM13 16.5H15V9.5H13V16.5Z"
4
+ d="M1 4.33333H23V6.33333H20.7133L19.9937 17.1281C19.9375 17.9708 19.8915 18.6616 19.8091 19.2226C19.7237 19.8046 19.5893 20.3272 19.3134 20.8117C18.8799 21.5726 18.226 22.1843 17.438 22.5662C16.9362 22.8094 16.4058 22.9086 15.8194 22.9552C15.2542 23 14.5619 23 13.7174 23H10.2826C9.43813 23 8.74577 23 8.18056 22.9552C7.59422 22.9086 7.06377 22.8094 6.56205 22.5662C5.77399 22.1843 5.12013 21.5726 4.68665 20.8117C4.41066 20.3272 4.27635 19.8046 4.1909 19.2226C4.10854 18.6616 4.06249 17.9708 4.00632 17.1282L3.28667 6.33333H1V4.33333ZM8.77783 16.8888H10.7778V9.33325H8.77783V16.8888ZM13.2223 16.8888H15.2223V9.33325H13.2223V16.8888Z"
5
5
  fill="currentColor" />
6
- </svg>
6
+ </svg>