a-icons 1.2.13 → 1.2.15
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/DataLogOutlined.d.ts +6 -0
- package/es/DataLogOutlined.js +33 -0
- package/es/StarFilled.js +3 -1
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/DataLogOutlined.d.ts +6 -0
- package/lib/DataLogOutlined.js +76 -0
- package/lib/StarFilled.js +3 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +12 -5
- package/package.json +2 -2
- package/src/DataLogOutlined.tsx +20 -0
- package/src/StarFilled.tsx +3 -1
- package/src/index.tsx +1 -0
- package/svgs/filled/star-filled.svg +2 -2
- package/svgs/outlined/data-log-outlined.svg +3 -0
- package/tmpAllSvgs/data-log-outlined.svg +3 -0
- package/tmpAllSvgs/star-filled.svg +2 -2
|
@@ -0,0 +1,33 @@
|
|
|
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 DataLogOutlined(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
fillRule: "evenodd",
|
|
23
|
+
clipRule: "evenodd",
|
|
24
|
+
d: "M13 3.02c-.186-.017-.46-.02-.988-.02H8.8c-.857 0-1.439 0-1.889.038-.438.035-.663.1-.819.18a2 2 0 00-.874.874c-.08.156-.145.38-.18.819C5 5.361 5 5.943 5 6.8v10.4c0 .857 0 1.439.038 1.889.035.438.1.663.18.819a2 2 0 00.874.874c.156.08.38.145.819.18C7.361 21 7.943 21 8.8 21h6.4c.857 0 1.439 0 1.889-.038.438-.035.663-.1.819-.18a2 2 0 00.874-.874c.08-.156.145-.38.18-.819.037-.45.038-1.032.038-1.889V9.988c0-.527-.003-.802-.02-.988h-3.412c-.252 0-.498 0-.706-.017a2.022 2.022 0 01-.77-.2 2 2 0 01-.874-.875 2.022 2.022 0 01-.201-.77C13 6.93 13 6.684 13 6.432V3.02zm1.394-1.67a3.999 3.999 0 00-.703-.24C13.228 1 12.75 1 12.114 1H8.759c-.805 0-1.47 0-2.01.044-.563.046-1.08.145-1.565.392a4 4 0 00-1.748 1.748c-.247.485-.346 1.002-.392 1.564C3 5.29 3 5.954 3 6.758v10.483c0 .805 0 1.47.044 2.01.046.563.145 1.08.392 1.565a4 4 0 001.748 1.748c.485.247 1.002.346 1.564.392C7.29 23 7.954 23 8.758 23h6.483c.805 0 1.47 0 2.01-.044.563-.046 1.08-.145 1.565-.392a4 4 0 001.748-1.748c.247-.485.346-1.002.392-1.564.044-.541.044-1.206.044-2.01V9.987v-.102c0-.635 0-1.114-.11-1.577a3.996 3.996 0 00-.48-1.156c-.248-.406-.587-.745-1.037-1.194l-.072-.072-3.188-3.188-.072-.072c-.449-.45-.788-.789-1.194-1.038a4.008 4.008 0 00-.453-.239zM15 4.414V6.4c0 .297 0 .459.01.575l.001.014h.014c.116.01.278.011.575.011h1.986L15 4.414zM11.414 12.5l-2.5 2.5 2.5 2.5L10 18.914l-3.207-3.207a1 1 0 010-1.414L10 11.086l1.414 1.414zM14 11.086l3.207 3.207a1 1 0 010 1.414L14 18.914 12.586 17.5l2.5-2.5-2.5-2.5L14 11.086z",
|
|
25
|
+
fill: "currentColor"
|
|
26
|
+
}));
|
|
27
|
+
};
|
|
28
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
29
|
+
component: IconNode
|
|
30
|
+
}));
|
|
31
|
+
}
|
|
32
|
+
DataLogOutlined.displayName = 'DataLogOutlined';
|
|
33
|
+
export default DataLogOutlined;
|
package/es/StarFilled.js
CHANGED
|
@@ -18,7 +18,9 @@ function StarFilled(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
|
-
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M11.354 1.775a1.5 1.5 0 011.292 0c.353.168.547.46.645.62.102.167.206.378.308.583l.015.032 2.14 4.336 4.822.705c.227.033.46.067.65.112.182.044.52.14.789.423a1.5 1.5 0 01.398 1.228c-.051.388-.27.663-.391.806-.127.147-.295.312-.46.472l-3.488 3.397.823 4.798c.04.226.08.458.095.652.014.187.029.538-.158.882a1.5 1.5 0 01-1.045.759c-.384.071-.713-.05-.887-.123a7.751 7.751 0 01-.591-.29L12 18.898l-4.31 2.267a7.754 7.754 0 01-.592.291c-.173.072-.503.194-.887.123a1.5 1.5 0 01-1.045-.759c-.187-.344-.172-.695-.158-.882.016-.194.056-.426.095-.652l.823-4.798-3.463-3.373-.025-.024a7.756 7.756 0 01-.46-.472c-.122-.143-.34-.418-.39-.806a1.5 1.5 0 01.397-1.228c.27-.284.607-.379.79-.423.189-.045.422-.08.649-.112l.034-.006 4.788-.7 2.14-4.335.016-.032c.101-.205.205-.416.307-.582.098-.16.292-.453.646-.621z",
|
|
22
24
|
fill: "currentColor"
|
|
23
25
|
}));
|
|
24
26
|
};
|
package/es/index.d.ts
CHANGED
|
@@ -98,6 +98,7 @@ export { default as CyclePlusFilled } from './CyclePlusFilled';
|
|
|
98
98
|
export { default as DailyFinanceOutlined } from './DailyFinanceOutlined';
|
|
99
99
|
export { default as DashboardFilled } from './DashboardFilled';
|
|
100
100
|
export { default as DashboardOutlined } from './DashboardOutlined';
|
|
101
|
+
export { default as DataLogOutlined } from './DataLogOutlined';
|
|
101
102
|
export { default as DataPanelOutlined } from './DataPanelOutlined';
|
|
102
103
|
export { default as DescOutlined } from './DescOutlined';
|
|
103
104
|
export { default as DiamondFileFilled } from './DiamondFileFilled';
|
package/es/index.js
CHANGED
|
@@ -98,6 +98,7 @@ export { default as CyclePlusFilled } from './CyclePlusFilled';
|
|
|
98
98
|
export { default as DailyFinanceOutlined } from './DailyFinanceOutlined';
|
|
99
99
|
export { default as DashboardFilled } from './DashboardFilled';
|
|
100
100
|
export { default as DashboardOutlined } from './DashboardOutlined';
|
|
101
|
+
export { default as DataLogOutlined } from './DataLogOutlined';
|
|
101
102
|
export { default as DataPanelOutlined } from './DataPanelOutlined';
|
|
102
103
|
export { default as DescOutlined } from './DescOutlined';
|
|
103
104
|
export { default as DiamondFileFilled } from './DiamondFileFilled';
|
|
@@ -0,0 +1,76 @@
|
|
|
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 DataLogOutlined(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
fill: "none",
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
64
|
+
}, props), React.createElement("path", {
|
|
65
|
+
fillRule: "evenodd",
|
|
66
|
+
clipRule: "evenodd",
|
|
67
|
+
d: "M13 3.02c-.186-.017-.46-.02-.988-.02H8.8c-.857 0-1.439 0-1.889.038-.438.035-.663.1-.819.18a2 2 0 00-.874.874c-.08.156-.145.38-.18.819C5 5.361 5 5.943 5 6.8v10.4c0 .857 0 1.439.038 1.889.035.438.1.663.18.819a2 2 0 00.874.874c.156.08.38.145.819.18C7.361 21 7.943 21 8.8 21h6.4c.857 0 1.439 0 1.889-.038.438-.035.663-.1.819-.18a2 2 0 00.874-.874c.08-.156.145-.38.18-.819.037-.45.038-1.032.038-1.889V9.988c0-.527-.003-.802-.02-.988h-3.412c-.252 0-.498 0-.706-.017a2.022 2.022 0 01-.77-.2 2 2 0 01-.874-.875 2.022 2.022 0 01-.201-.77C13 6.93 13 6.684 13 6.432V3.02zm1.394-1.67a3.999 3.999 0 00-.703-.24C13.228 1 12.75 1 12.114 1H8.759c-.805 0-1.47 0-2.01.044-.563.046-1.08.145-1.565.392a4 4 0 00-1.748 1.748c-.247.485-.346 1.002-.392 1.564C3 5.29 3 5.954 3 6.758v10.483c0 .805 0 1.47.044 2.01.046.563.145 1.08.392 1.565a4 4 0 001.748 1.748c.485.247 1.002.346 1.564.392C7.29 23 7.954 23 8.758 23h6.483c.805 0 1.47 0 2.01-.044.563-.046 1.08-.145 1.565-.392a4 4 0 001.748-1.748c.247-.485.346-1.002.392-1.564.044-.541.044-1.206.044-2.01V9.987v-.102c0-.635 0-1.114-.11-1.577a3.996 3.996 0 00-.48-1.156c-.248-.406-.587-.745-1.037-1.194l-.072-.072-3.188-3.188-.072-.072c-.449-.45-.788-.789-1.194-1.038a4.008 4.008 0 00-.453-.239zM15 4.414V6.4c0 .297 0 .459.01.575l.001.014h.014c.116.01.278.011.575.011h1.986L15 4.414zM11.414 12.5l-2.5 2.5 2.5 2.5L10 18.914l-3.207-3.207a1 1 0 010-1.414L10 11.086l1.414 1.414zM14 11.086l3.207 3.207a1 1 0 010 1.414L14 18.914 12.586 17.5l2.5-2.5-2.5-2.5L14 11.086z",
|
|
68
|
+
fill: "currentColor"
|
|
69
|
+
}));
|
|
70
|
+
};
|
|
71
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
72
|
+
component: IconNode
|
|
73
|
+
}));
|
|
74
|
+
}
|
|
75
|
+
DataLogOutlined.displayName = 'DataLogOutlined';
|
|
76
|
+
exports["default"] = DataLogOutlined;
|
package/lib/StarFilled.js
CHANGED
|
@@ -61,7 +61,9 @@ function StarFilled(componentProps) {
|
|
|
61
61
|
viewBox: "0 0 24 24",
|
|
62
62
|
xmlns: "http://www.w3.org/2000/svg"
|
|
63
63
|
}, props), React.createElement("path", {
|
|
64
|
-
|
|
64
|
+
fillRule: "evenodd",
|
|
65
|
+
clipRule: "evenodd",
|
|
66
|
+
d: "M11.354 1.775a1.5 1.5 0 011.292 0c.353.168.547.46.645.62.102.167.206.378.308.583l.015.032 2.14 4.336 4.822.705c.227.033.46.067.65.112.182.044.52.14.789.423a1.5 1.5 0 01.398 1.228c-.051.388-.27.663-.391.806-.127.147-.295.312-.46.472l-3.488 3.397.823 4.798c.04.226.08.458.095.652.014.187.029.538-.158.882a1.5 1.5 0 01-1.045.759c-.384.071-.713-.05-.887-.123a7.751 7.751 0 01-.591-.29L12 18.898l-4.31 2.267a7.754 7.754 0 01-.592.291c-.173.072-.503.194-.887.123a1.5 1.5 0 01-1.045-.759c-.187-.344-.172-.695-.158-.882.016-.194.056-.426.095-.652l.823-4.798-3.463-3.373-.025-.024a7.756 7.756 0 01-.46-.472c-.122-.143-.34-.418-.39-.806a1.5 1.5 0 01.397-1.228c.27-.284.607-.379.79-.423.189-.045.422-.08.649-.112l.034-.006 4.788-.7 2.14-4.335.016-.032c.101-.205.205-.416.307-.582.098-.16.292-.453.646-.621z",
|
|
65
67
|
fill: "currentColor"
|
|
66
68
|
}));
|
|
67
69
|
};
|
package/lib/index.d.ts
CHANGED
|
@@ -98,6 +98,7 @@ export { default as CyclePlusFilled } from './CyclePlusFilled';
|
|
|
98
98
|
export { default as DailyFinanceOutlined } from './DailyFinanceOutlined';
|
|
99
99
|
export { default as DashboardFilled } from './DashboardFilled';
|
|
100
100
|
export { default as DashboardOutlined } from './DashboardOutlined';
|
|
101
|
+
export { default as DataLogOutlined } from './DataLogOutlined';
|
|
101
102
|
export { default as DataPanelOutlined } from './DataPanelOutlined';
|
|
102
103
|
export { default as DescOutlined } from './DescOutlined';
|
|
103
104
|
export { default as DiamondFileFilled } from './DiamondFileFilled';
|
package/lib/index.js
CHANGED
|
@@ -10,11 +10,11 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports.CameraFilled = exports.CallRecordOutlined = exports.CallOutlined = exports.CallFilled = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BrokenHeartFilled = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BookOutlined = exports.BookFilled = exports.BoardOutlined = exports.BoardFilled = exports.BlockChainOutlined = exports.BlockChainFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BindChainOutlined = exports.BindChainFilled = exports.BellOutlined = exports.BarsOutlined = exports.BarChartFilled = exports.BankCardFilled = exports.AtOutlined = exports.AscOutlined = exports.ArticleBoardFilled = exports.ArrowsRightLeftOutlined = exports.ArrowsRightLeftFilled = exports.ArrowsChevronOutlined = exports.ArrowsChevronFilled = exports.ArrowUpFilled = exports.ArrowTopRightOutlined = exports.ArrowSwapHorizontal = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownFilled = exports.ArrowCircleOutlined = exports.AppstoreOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddFilled = exports.AdFilled = exports.ImpassabilityFilled = exports.DailyFinanceFilled = void 0;
|
|
12
12
|
exports.DashboardOutlined = exports.DashboardFilled = exports.DailyFinanceOutlined = exports.CyclePlusFilled = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyLineOutlined = exports.CopyFilled = exports.ConfirmCircleSolidFilled = 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.ClockFastForwardOutlined = 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 = exports.CellPhoneCallFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardLoopOutlined = exports.CardLoopFilled = exports.CardFilled = exports.CameraOutlined = void 0;
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
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 = exports.SignalDiffusionOutlined = exports.SignalDiffusionFilled = exports.SignBankCardFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = void 0;
|
|
13
|
+
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.EditOutlined = 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 = exports.DataPanelOutlined = exports.DataLogOutlined = void 0;
|
|
14
|
+
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.HouseOutlined = 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 = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = void 0;
|
|
15
|
+
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 = exports.LockFilled = exports.LockEllipsisFilled = exports.LoadingFilled = exports.ListOutlined = void 0;
|
|
16
|
+
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.ResourceOutlined = 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.PersonTransferFilled = exports.PersonLeftArrowFilled = exports.PersonGroupFilled = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = 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 = exports.SignalDiffusionOutlined = exports.SignalDiffusionFilled = exports.SignBankCardFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldTickAsteriskFilled = void 0;
|
|
18
18
|
var DailyFinanceFilled_1 = require("./DailyFinanceFilled");
|
|
19
19
|
Object.defineProperty(exports, "DailyFinanceFilled", {
|
|
20
20
|
enumerable: true,
|
|
@@ -715,6 +715,13 @@ Object.defineProperty(exports, "DashboardOutlined", {
|
|
|
715
715
|
return __importDefault(DashboardOutlined_1)["default"];
|
|
716
716
|
}
|
|
717
717
|
});
|
|
718
|
+
var DataLogOutlined_1 = require("./DataLogOutlined");
|
|
719
|
+
Object.defineProperty(exports, "DataLogOutlined", {
|
|
720
|
+
enumerable: true,
|
|
721
|
+
get: function get() {
|
|
722
|
+
return __importDefault(DataLogOutlined_1)["default"];
|
|
723
|
+
}
|
|
724
|
+
});
|
|
718
725
|
var DataPanelOutlined_1 = require("./DataPanelOutlined");
|
|
719
726
|
Object.defineProperty(exports, "DataPanelOutlined", {
|
|
720
727
|
enumerable: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.15",
|
|
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": "2a6488db828340eaf9646db26fbd46369d889dda"
|
|
26
26
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function DataLogOutlined(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
d="M13 3.02c-.186-.017-.46-.02-.988-.02H8.8c-.857 0-1.439 0-1.889.038-.438.035-.663.1-.819.18a2 2 0 00-.874.874c-.08.156-.145.38-.18.819C5 5.361 5 5.943 5 6.8v10.4c0 .857 0 1.439.038 1.889.035.438.1.663.18.819a2 2 0 00.874.874c.156.08.38.145.819.18C7.361 21 7.943 21 8.8 21h6.4c.857 0 1.439 0 1.889-.038.438-.035.663-.1.819-.18a2 2 0 00.874-.874c.08-.156.145-.38.18-.819.037-.45.038-1.032.038-1.889V9.988c0-.527-.003-.802-.02-.988h-3.412c-.252 0-.498 0-.706-.017a2.022 2.022 0 01-.77-.2 2 2 0 01-.874-.875 2.022 2.022 0 01-.201-.77C13 6.93 13 6.684 13 6.432V3.02zm1.394-1.67a3.999 3.999 0 00-.703-.24C13.228 1 12.75 1 12.114 1H8.759c-.805 0-1.47 0-2.01.044-.563.046-1.08.145-1.565.392a4 4 0 00-1.748 1.748c-.247.485-.346 1.002-.392 1.564C3 5.29 3 5.954 3 6.758v10.483c0 .805 0 1.47.044 2.01.046.563.145 1.08.392 1.565a4 4 0 001.748 1.748c.485.247 1.002.346 1.564.392C7.29 23 7.954 23 8.758 23h6.483c.805 0 1.47 0 2.01-.044.563-.046 1.08-.145 1.565-.392a4 4 0 001.748-1.748c.247-.485.346-1.002.392-1.564.044-.541.044-1.206.044-2.01V9.987v-.102c0-.635 0-1.114-.11-1.577a3.996 3.996 0 00-.48-1.156c-.248-.406-.587-.745-1.037-1.194l-.072-.072-3.188-3.188-.072-.072c-.449-.45-.788-.789-1.194-1.038a4.008 4.008 0 00-.453-.239zM15 4.414V6.4c0 .297 0 .459.01.575l.001.014h.014c.116.01.278.011.575.011h1.986L15 4.414zM11.414 12.5l-2.5 2.5 2.5 2.5L10 18.914l-3.207-3.207a1 1 0 010-1.414L10 11.086l1.414 1.414zM14 11.086l3.207 3.207a1 1 0 010 1.414L14 18.914 12.586 17.5l2.5-2.5-2.5-2.5L14 11.086z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
</svg>
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
DataLogOutlined.displayName = 'DataLogOutlined';
|
|
20
|
+
export default DataLogOutlined;
|
package/src/StarFilled.tsx
CHANGED
|
@@ -5,7 +5,9 @@ function StarFilled(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
7
|
<path
|
|
8
|
-
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
d="M11.354 1.775a1.5 1.5 0 011.292 0c.353.168.547.46.645.62.102.167.206.378.308.583l.015.032 2.14 4.336 4.822.705c.227.033.46.067.65.112.182.044.52.14.789.423a1.5 1.5 0 01.398 1.228c-.051.388-.27.663-.391.806-.127.147-.295.312-.46.472l-3.488 3.397.823 4.798c.04.226.08.458.095.652.014.187.029.538-.158.882a1.5 1.5 0 01-1.045.759c-.384.071-.713-.05-.887-.123a7.751 7.751 0 01-.591-.29L12 18.898l-4.31 2.267a7.754 7.754 0 01-.592.291c-.173.072-.503.194-.887.123a1.5 1.5 0 01-1.045-.759c-.187-.344-.172-.695-.158-.882.016-.194.056-.426.095-.652l.823-4.798-3.463-3.373-.025-.024a7.756 7.756 0 01-.46-.472c-.122-.143-.34-.418-.39-.806a1.5 1.5 0 01.397-1.228c.27-.284.607-.379.79-.423.189-.045.422-.08.649-.112l.034-.006 4.788-.7 2.14-4.335.016-.032c.101-.205.205-.416.307-.582.098-.16.292-.453.646-.621z"
|
|
9
11
|
fill="currentColor"
|
|
10
12
|
/>
|
|
11
13
|
</svg>
|
package/src/index.tsx
CHANGED
|
@@ -98,6 +98,7 @@ export { default as CyclePlusFilled } from './CyclePlusFilled';
|
|
|
98
98
|
export { default as DailyFinanceOutlined } from './DailyFinanceOutlined';
|
|
99
99
|
export { default as DashboardFilled } from './DashboardFilled';
|
|
100
100
|
export { default as DashboardOutlined } from './DashboardOutlined';
|
|
101
|
+
export { default as DataLogOutlined } from './DataLogOutlined';
|
|
101
102
|
export { default as DataPanelOutlined } from './DataPanelOutlined';
|
|
102
103
|
export { default as DescOutlined } from './DescOutlined';
|
|
103
104
|
export { default as DiamondFileFilled } from './DiamondFileFilled';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path
|
|
3
|
-
d="
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M11.3545 1.77493C11.7628 1.58023 12.2372 1.58023 12.6456 1.77493C12.9986 1.94325 13.1932 2.23549 13.2914 2.39581C13.3929 2.56155 13.497 2.77269 13.5986 2.97848C13.6037 2.98899 13.6089 2.99948 13.6141 3.00996L15.7543 7.34575L20.5763 8.05055C20.8033 8.08369 21.0362 8.11768 21.2252 8.16311C21.4079 8.20706 21.7458 8.30211 22.0147 8.58595C22.3258 8.91431 22.4721 9.36553 22.4129 9.81397C22.3617 10.2016 22.1439 10.4768 22.0217 10.6197C21.8954 10.7673 21.7267 10.9315 21.5624 11.0915L18.0745 14.4886L18.8975 19.2869C18.9364 19.5131 18.9762 19.7452 18.9916 19.939C19.0064 20.1264 19.0207 20.4773 18.834 20.8211C18.6181 21.2187 18.2342 21.4975 17.7893 21.58C17.4047 21.6513 17.0755 21.5292 16.9018 21.4571C16.7223 21.3826 16.5138 21.273 16.3107 21.1661L12 18.8991L7.68936 21.1661C7.4862 21.273 7.27778 21.3826 7.09823 21.4571C6.9246 21.5292 6.59531 21.6513 6.21071 21.58C5.76584 21.4975 5.38196 21.2187 5.16601 20.8211C4.97931 20.4773 4.99365 20.1264 5.00849 19.939C5.02383 19.7453 5.06369 19.5131 5.10254 19.2869L5.9255 14.4886L2.46283 11.116C2.45448 11.1079 2.4461 11.0997 2.43771 11.0915C2.27335 10.9315 2.10469 10.7673 1.97838 10.6197C1.85618 10.4768 1.63833 10.2016 1.58714 9.81397C1.52792 9.36553 1.67422 8.91432 1.98531 8.58595C2.25423 8.30211 2.59214 8.20706 2.7749 8.16311C2.96382 8.11768 3.19673 8.08369 3.42372 8.05055C3.43531 8.04886 3.44688 8.04717 3.45842 8.04549L8.24576 7.34575L10.386 3.00996C10.3911 2.99948 10.3963 2.98899 10.4015 2.97848C10.503 2.77269 10.6072 2.56155 10.7087 2.39581C10.8068 2.23549 11.0014 1.94325 11.3545 1.77493Z"
|
|
4
4
|
fill="currentColor" />
|
|
5
5
|
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 3.01985C12.8143 3.00293 12.5391 3 12.0118 3H8.8C7.94342 3 7.36113 3.00078 6.91104 3.03755C6.47262 3.07337 6.24842 3.1383 6.09202 3.21799C5.7157 3.40974 5.40973 3.7157 5.21799 4.09202C5.1383 4.24842 5.07337 4.47262 5.03755 4.91104C5.00078 5.36113 5 5.94342 5 6.8V17.2C5 18.0566 5.00078 18.6389 5.03755 19.089C5.07337 19.5274 5.1383 19.7516 5.21799 19.908C5.40973 20.2843 5.7157 20.5903 6.09202 20.782C6.24842 20.8617 6.47262 20.9266 6.91104 20.9625C7.36113 20.9992 7.94342 21 8.8 21H15.2C16.0566 21 16.6389 20.9992 17.089 20.9625C17.5274 20.9266 17.7516 20.8617 17.908 20.782C18.2843 20.5903 18.5903 20.2843 18.782 19.908C18.8617 19.7516 18.9266 19.5274 18.9624 19.089C18.9992 18.6389 19 18.0566 19 17.2V9.98823C19 9.46093 18.9971 9.18577 18.9802 9.00007L15.5681 9.00008C15.3157 9.00011 15.0699 9.00014 14.8618 8.98313C14.6332 8.96445 14.3634 8.92038 14.092 8.78209C13.7157 8.59034 13.4097 8.28438 13.218 7.90805C13.0797 7.63663 13.0356 7.3669 13.0169 7.1383C12.9999 6.93014 13 6.68434 13 6.43196L13 3.01985ZM14.3936 1.34997C14.1677 1.24871 13.9326 1.16848 13.6911 1.11052C13.2284 0.999439 12.7487 0.999668 12.1137 0.99997C12.0801 0.999986 12.0462 1 12.0118 1L8.7587 1C7.95373 0.999989 7.28937 0.999978 6.74817 1.0442C6.18608 1.09012 5.66937 1.18869 5.18404 1.43598C4.43139 1.81947 3.81947 2.43139 3.43597 3.18404C3.18868 3.66938 3.09012 4.18608 3.04419 4.74818C2.99998 5.28937 2.99999 5.95373 3 6.7587V17.2413C2.99999 18.0463 2.99998 18.7106 3.04419 19.2518C3.09012 19.8139 3.18868 20.3306 3.43597 20.816C3.81947 21.5686 4.43139 22.1805 5.18404 22.564C5.66937 22.8113 6.18608 22.9099 6.74817 22.9558C7.28936 23 7.95372 23 8.75868 23H15.2413C16.0463 23 16.7106 23 17.2518 22.9558C17.8139 22.9099 18.3306 22.8113 18.816 22.564C19.5686 22.1805 20.1805 21.5686 20.564 20.816C20.8113 20.3306 20.9099 19.8139 20.9558 19.2518C21 18.7106 21 18.0463 21 17.2413V9.98823C21 9.95382 21 9.91987 21 9.88636C21.0003 9.25135 21.0006 8.77156 20.8895 8.30886C20.8317 8.06813 20.7518 7.83366 20.6509 7.60837C20.6447 7.59369 20.6381 7.57919 20.6311 7.56488C20.5658 7.42349 20.4922 7.28583 20.4106 7.15265C20.1619 6.74692 19.8225 6.40782 19.3733 5.95901C19.3496 5.93533 19.3255 5.91133 19.3012 5.88701L16.113 2.69878C16.0887 2.67445 16.0647 2.65043 16.041 2.62672C15.5922 2.1775 15.2531 1.83807 14.8474 1.58944C14.7136 1.5075 14.5754 1.4336 14.4334 1.36808C14.4203 1.36176 14.407 1.35572 14.3936 1.34997ZM15 4.41422V6.40007C15 6.6966 15.0008 6.85885 15.0103 6.97544C15.0107 6.98008 15.0111 6.98447 15.0114 6.98862C15.0156 6.98901 15.02 6.98939 15.0246 6.98977C15.1412 6.9993 15.3035 7.00007 15.6 7.00007H17.5859L15 4.41422ZM11.4142 12.5L8.91421 15L11.4142 17.5L10 18.9142L6.79289 15.7071C6.40237 15.3166 6.40237 14.6834 6.79289 14.2929L10 11.0858L11.4142 12.5ZM14 11.0858L17.2071 14.2929C17.5976 14.6834 17.5976 15.3166 17.2071 15.7071L14 18.9142L12.5858 17.5L15.0858 15L12.5858 12.5L14 11.0858Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 3.01985C12.8143 3.00293 12.5391 3 12.0118 3H8.8C7.94342 3 7.36113 3.00078 6.91104 3.03755C6.47262 3.07337 6.24842 3.1383 6.09202 3.21799C5.7157 3.40974 5.40973 3.7157 5.21799 4.09202C5.1383 4.24842 5.07337 4.47262 5.03755 4.91104C5.00078 5.36113 5 5.94342 5 6.8V17.2C5 18.0566 5.00078 18.6389 5.03755 19.089C5.07337 19.5274 5.1383 19.7516 5.21799 19.908C5.40973 20.2843 5.7157 20.5903 6.09202 20.782C6.24842 20.8617 6.47262 20.9266 6.91104 20.9625C7.36113 20.9992 7.94342 21 8.8 21H15.2C16.0566 21 16.6389 20.9992 17.089 20.9625C17.5274 20.9266 17.7516 20.8617 17.908 20.782C18.2843 20.5903 18.5903 20.2843 18.782 19.908C18.8617 19.7516 18.9266 19.5274 18.9624 19.089C18.9992 18.6389 19 18.0566 19 17.2V9.98823C19 9.46093 18.9971 9.18577 18.9802 9.00007L15.5681 9.00008C15.3157 9.00011 15.0699 9.00014 14.8618 8.98313C14.6332 8.96445 14.3634 8.92038 14.092 8.78209C13.7157 8.59034 13.4097 8.28438 13.218 7.90805C13.0797 7.63663 13.0356 7.3669 13.0169 7.1383C12.9999 6.93014 13 6.68434 13 6.43196L13 3.01985ZM14.3936 1.34997C14.1677 1.24871 13.9326 1.16848 13.6911 1.11052C13.2284 0.999439 12.7487 0.999668 12.1137 0.99997C12.0801 0.999986 12.0462 1 12.0118 1L8.7587 1C7.95373 0.999989 7.28937 0.999978 6.74817 1.0442C6.18608 1.09012 5.66937 1.18869 5.18404 1.43598C4.43139 1.81947 3.81947 2.43139 3.43597 3.18404C3.18868 3.66938 3.09012 4.18608 3.04419 4.74818C2.99998 5.28937 2.99999 5.95373 3 6.7587V17.2413C2.99999 18.0463 2.99998 18.7106 3.04419 19.2518C3.09012 19.8139 3.18868 20.3306 3.43597 20.816C3.81947 21.5686 4.43139 22.1805 5.18404 22.564C5.66937 22.8113 6.18608 22.9099 6.74817 22.9558C7.28936 23 7.95372 23 8.75868 23H15.2413C16.0463 23 16.7106 23 17.2518 22.9558C17.8139 22.9099 18.3306 22.8113 18.816 22.564C19.5686 22.1805 20.1805 21.5686 20.564 20.816C20.8113 20.3306 20.9099 19.8139 20.9558 19.2518C21 18.7106 21 18.0463 21 17.2413V9.98823C21 9.95382 21 9.91987 21 9.88636C21.0003 9.25135 21.0006 8.77156 20.8895 8.30886C20.8317 8.06813 20.7518 7.83366 20.6509 7.60837C20.6447 7.59369 20.6381 7.57919 20.6311 7.56488C20.5658 7.42349 20.4922 7.28583 20.4106 7.15265C20.1619 6.74692 19.8225 6.40782 19.3733 5.95901C19.3496 5.93533 19.3255 5.91133 19.3012 5.88701L16.113 2.69878C16.0887 2.67445 16.0647 2.65043 16.041 2.62672C15.5922 2.1775 15.2531 1.83807 14.8474 1.58944C14.7136 1.5075 14.5754 1.4336 14.4334 1.36808C14.4203 1.36176 14.407 1.35572 14.3936 1.34997ZM15 4.41422V6.40007C15 6.6966 15.0008 6.85885 15.0103 6.97544C15.0107 6.98008 15.0111 6.98447 15.0114 6.98862C15.0156 6.98901 15.02 6.98939 15.0246 6.98977C15.1412 6.9993 15.3035 7.00007 15.6 7.00007H17.5859L15 4.41422ZM11.4142 12.5L8.91421 15L11.4142 17.5L10 18.9142L6.79289 15.7071C6.40237 15.3166 6.40237 14.6834 6.79289 14.2929L10 11.0858L11.4142 12.5ZM14 11.0858L17.2071 14.2929C17.5976 14.6834 17.5976 15.3166 17.2071 15.7071L14 18.9142L12.5858 17.5L15.0858 15L12.5858 12.5L14 11.0858Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path
|
|
3
|
-
d="
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M11.3545 1.77493C11.7628 1.58023 12.2372 1.58023 12.6456 1.77493C12.9986 1.94325 13.1932 2.23549 13.2914 2.39581C13.3929 2.56155 13.497 2.77269 13.5986 2.97848C13.6037 2.98899 13.6089 2.99948 13.6141 3.00996L15.7543 7.34575L20.5763 8.05055C20.8033 8.08369 21.0362 8.11768 21.2252 8.16311C21.4079 8.20706 21.7458 8.30211 22.0147 8.58595C22.3258 8.91431 22.4721 9.36553 22.4129 9.81397C22.3617 10.2016 22.1439 10.4768 22.0217 10.6197C21.8954 10.7673 21.7267 10.9315 21.5624 11.0915L18.0745 14.4886L18.8975 19.2869C18.9364 19.5131 18.9762 19.7452 18.9916 19.939C19.0064 20.1264 19.0207 20.4773 18.834 20.8211C18.6181 21.2187 18.2342 21.4975 17.7893 21.58C17.4047 21.6513 17.0755 21.5292 16.9018 21.4571C16.7223 21.3826 16.5138 21.273 16.3107 21.1661L12 18.8991L7.68936 21.1661C7.4862 21.273 7.27778 21.3826 7.09823 21.4571C6.9246 21.5292 6.59531 21.6513 6.21071 21.58C5.76584 21.4975 5.38196 21.2187 5.16601 20.8211C4.97931 20.4773 4.99365 20.1264 5.00849 19.939C5.02383 19.7453 5.06369 19.5131 5.10254 19.2869L5.9255 14.4886L2.46283 11.116C2.45448 11.1079 2.4461 11.0997 2.43771 11.0915C2.27335 10.9315 2.10469 10.7673 1.97838 10.6197C1.85618 10.4768 1.63833 10.2016 1.58714 9.81397C1.52792 9.36553 1.67422 8.91432 1.98531 8.58595C2.25423 8.30211 2.59214 8.20706 2.7749 8.16311C2.96382 8.11768 3.19673 8.08369 3.42372 8.05055C3.43531 8.04886 3.44688 8.04717 3.45842 8.04549L8.24576 7.34575L10.386 3.00996C10.3911 2.99948 10.3963 2.98899 10.4015 2.97848C10.503 2.77269 10.6072 2.56155 10.7087 2.39581C10.8068 2.23549 11.0014 1.94325 11.3545 1.77493Z"
|
|
4
4
|
fill="currentColor" />
|
|
5
5
|
</svg>
|