a-icons 1.0.80 → 1.0.83
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/ShapArrowLeftFilled.d.ts +7 -0
- package/es/{ShapArrowLeftOutlined.js → ShapArrowLeftFilled.js} +3 -3
- package/es/ShapArrowRightFilled.d.ts +7 -0
- package/es/{ShapArrowRightOutlined.js → ShapArrowRightFilled.js} +3 -3
- package/es/index.d.ts +2 -2
- package/es/index.js +2 -2
- package/lib/ShapArrowLeftFilled.d.ts +7 -0
- package/lib/{ShapArrowLeftOutlined.js → ShapArrowLeftFilled.js} +3 -3
- package/lib/ShapArrowRightFilled.d.ts +7 -0
- package/lib/{ShapArrowRightOutlined.js → ShapArrowRightFilled.js} +3 -3
- package/lib/index.d.ts +2 -2
- package/lib/index.js +7 -7
- package/package.json +2 -2
- package/src/{ShapArrowLeftOutlined.tsx → ShapArrowLeftFilled.tsx} +3 -3
- package/src/{ShapArrowRightOutlined.tsx → ShapArrowRightFilled.tsx} +3 -3
- package/src/{ShopKeeperFilled.tsx → ShopkeeperFilled.tsx} +0 -0
- package/src/{ShopKeeperOutlined.tsx → ShopkeeperOutlined.tsx} +0 -0
- package/src/index.tsx +2 -2
- package/svgs/{outlined/shap-arrow-left-outlined.svg → filled/shap-arrow-left-filled.svg} +0 -0
- package/svgs/{outlined/shap-arrow-right-outlined.svg → filled/shap-arrow-right-filled.svg} +0 -0
- package/svgs/outlined/vector-outlined.svg +1 -1
- package/tmpAllSvgs/{shap-arrow-left-outlined.svg → shap-arrow-left-filled.svg} +0 -0
- package/tmpAllSvgs/{shap-arrow-right-outlined.svg → shap-arrow-right-filled.svg} +0 -0
- package/tmpAllSvgs/vector-outlined.svg +1 -1
- package/es/ShapArrowLeftOutlined.d.ts +0 -7
- package/es/ShapArrowRightOutlined.d.ts +0 -7
- package/lib/ShapArrowLeftOutlined.d.ts +0 -7
- package/lib/ShapArrowRightOutlined.d.ts +0 -7
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function ShapArrowLeftFilled(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace ShapArrowLeftFilled {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default ShapArrowLeftFilled;
|
|
@@ -17,7 +17,7 @@ var __assign = this && this.__assign || function () {
|
|
|
17
17
|
import * as React from 'react';
|
|
18
18
|
import Icon from 'a-base-icon/lib/icon';
|
|
19
19
|
|
|
20
|
-
function
|
|
20
|
+
function ShapArrowLeftFilled(componentProps) {
|
|
21
21
|
var IconNode = function IconNode(props) {
|
|
22
22
|
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
23
|
viewBox: "0 0 25 24",
|
|
@@ -36,5 +36,5 @@ function ShapArrowLeftOutlined(componentProps) {
|
|
|
36
36
|
}));
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
export default
|
|
39
|
+
ShapArrowLeftFilled.displayName = 'ShapArrowLeftFilled';
|
|
40
|
+
export default ShapArrowLeftFilled;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function ShapArrowRightFilled(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace ShapArrowRightFilled {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default ShapArrowRightFilled;
|
|
@@ -17,7 +17,7 @@ var __assign = this && this.__assign || function () {
|
|
|
17
17
|
import * as React from 'react';
|
|
18
18
|
import Icon from 'a-base-icon/lib/icon';
|
|
19
19
|
|
|
20
|
-
function
|
|
20
|
+
function ShapArrowRightFilled(componentProps) {
|
|
21
21
|
var IconNode = function IconNode(props) {
|
|
22
22
|
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
23
|
viewBox: "0 0 24 24",
|
|
@@ -36,5 +36,5 @@ function ShapArrowRightOutlined(componentProps) {
|
|
|
36
36
|
}));
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
export default
|
|
39
|
+
ShapArrowRightFilled.displayName = 'ShapArrowRightFilled';
|
|
40
|
+
export default ShapArrowRightFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -155,8 +155,8 @@ export { default as SettingFilled } from './SettingFilled';
|
|
|
155
155
|
export { default as SettingOutlined } from './SettingOutlined';
|
|
156
156
|
export { default as SettingSquareFilled } from './SettingSquareFilled';
|
|
157
157
|
export { default as SettingSquareOutlined } from './SettingSquareOutlined';
|
|
158
|
-
export { default as
|
|
159
|
-
export { default as
|
|
158
|
+
export { default as ShapArrowLeftFilled } from './ShapArrowLeftFilled';
|
|
159
|
+
export { default as ShapArrowRightFilled } from './ShapArrowRightFilled';
|
|
160
160
|
export { default as ShapeFilled } from './ShapeFilled';
|
|
161
161
|
export { default as ShapeOutlined } from './ShapeOutlined';
|
|
162
162
|
export { default as ShareFilled } from './ShareFilled';
|
package/es/index.js
CHANGED
|
@@ -155,8 +155,8 @@ export { default as SettingFilled } from './SettingFilled';
|
|
|
155
155
|
export { default as SettingOutlined } from './SettingOutlined';
|
|
156
156
|
export { default as SettingSquareFilled } from './SettingSquareFilled';
|
|
157
157
|
export { default as SettingSquareOutlined } from './SettingSquareOutlined';
|
|
158
|
-
export { default as
|
|
159
|
-
export { default as
|
|
158
|
+
export { default as ShapArrowLeftFilled } from './ShapArrowLeftFilled';
|
|
159
|
+
export { default as ShapArrowRightFilled } from './ShapArrowRightFilled';
|
|
160
160
|
export { default as ShapeFilled } from './ShapeFilled';
|
|
161
161
|
export { default as ShapeOutlined } from './ShapeOutlined';
|
|
162
162
|
export { default as ShareFilled } from './ShareFilled';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function ShapArrowLeftFilled(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace ShapArrowLeftFilled {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default ShapArrowLeftFilled;
|
|
@@ -70,7 +70,7 @@ var React = __importStar(require("react"));
|
|
|
70
70
|
|
|
71
71
|
var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
|
|
72
72
|
|
|
73
|
-
function
|
|
73
|
+
function ShapArrowLeftFilled(componentProps) {
|
|
74
74
|
var IconNode = function IconNode(props) {
|
|
75
75
|
return React.createElement("svg", __assign({
|
|
76
76
|
viewBox: "0 0 25 24",
|
|
@@ -89,5 +89,5 @@ function ShapArrowLeftOutlined(componentProps) {
|
|
|
89
89
|
}));
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
|
|
93
|
-
exports["default"] =
|
|
92
|
+
ShapArrowLeftFilled.displayName = 'ShapArrowLeftFilled';
|
|
93
|
+
exports["default"] = ShapArrowLeftFilled;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function ShapArrowRightFilled(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace ShapArrowRightFilled {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default ShapArrowRightFilled;
|
|
@@ -70,7 +70,7 @@ var React = __importStar(require("react"));
|
|
|
70
70
|
|
|
71
71
|
var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
|
|
72
72
|
|
|
73
|
-
function
|
|
73
|
+
function ShapArrowRightFilled(componentProps) {
|
|
74
74
|
var IconNode = function IconNode(props) {
|
|
75
75
|
return React.createElement("svg", __assign({
|
|
76
76
|
viewBox: "0 0 24 24",
|
|
@@ -89,5 +89,5 @@ function ShapArrowRightOutlined(componentProps) {
|
|
|
89
89
|
}));
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
|
|
93
|
-
exports["default"] =
|
|
92
|
+
ShapArrowRightFilled.displayName = 'ShapArrowRightFilled';
|
|
93
|
+
exports["default"] = ShapArrowRightFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -155,8 +155,8 @@ export { default as SettingFilled } from './SettingFilled';
|
|
|
155
155
|
export { default as SettingOutlined } from './SettingOutlined';
|
|
156
156
|
export { default as SettingSquareFilled } from './SettingSquareFilled';
|
|
157
157
|
export { default as SettingSquareOutlined } from './SettingSquareOutlined';
|
|
158
|
-
export { default as
|
|
159
|
-
export { default as
|
|
158
|
+
export { default as ShapArrowLeftFilled } from './ShapArrowLeftFilled';
|
|
159
|
+
export { default as ShapArrowRightFilled } from './ShapArrowRightFilled';
|
|
160
160
|
export { default as ShapeFilled } from './ShapeFilled';
|
|
161
161
|
export { default as ShapeOutlined } from './ShapeOutlined';
|
|
162
162
|
export { default as ShareFilled } from './ShareFilled';
|
package/lib/index.js
CHANGED
|
@@ -12,7 +12,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
12
12
|
exports.ComputerOutlined = exports.ComputerFilled = exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.CirclePlusFilled = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.ChainOutlined = exports.ChainFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BankCardFilled = exports.AtOutlined = exports.ArticleBoardFilled = exports.ArrowsRightLeftOutlined = exports.ArrowsRightLeftFilled = exports.ArrowsChevronOutlined = exports.ArrowsChevronFilled = exports.ArrowUpFilled = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownFilled = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddFilled = exports.ImpassabilityFilled = void 0;
|
|
13
13
|
exports.LimitlessFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.KeyFilled = exports.InviteFriendFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsFilled = exports.GiftFilled = exports.GarbageCanOutlined = exports.FunnelOutlined = exports.FunnelFilled = exports.FormOutlined = exports.FolderAddOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFilled = exports.FileDownloadLineOutlined = exports.EyeOutlined = exports.EyeFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EditSimpleOutlined = exports.EditFilled = exports.Edit2Filled = exports.EarthOutlined = exports.EarthFilled = exports.DownloadOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DashboardOutlined = exports.DashboardFilled = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CopyFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = void 0;
|
|
14
14
|
exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RetryRefreshFilled = exports.RefreshOutlined = exports.RefreshFilled = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinksOutlined = exports.LineUpOutlined = exports.LineUpFilled = void 0;
|
|
15
|
-
exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.
|
|
15
|
+
exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = 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.SearchOutlined = exports.SearchFilled = exports.SearchDocumentOutlined = void 0;
|
|
16
16
|
|
|
17
17
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
18
18
|
|
|
@@ -1427,21 +1427,21 @@ Object.defineProperty(exports, "SettingSquareOutlined", {
|
|
|
1427
1427
|
}
|
|
1428
1428
|
});
|
|
1429
1429
|
|
|
1430
|
-
var
|
|
1430
|
+
var ShapArrowLeftFilled_1 = require("./ShapArrowLeftFilled");
|
|
1431
1431
|
|
|
1432
|
-
Object.defineProperty(exports, "
|
|
1432
|
+
Object.defineProperty(exports, "ShapArrowLeftFilled", {
|
|
1433
1433
|
enumerable: true,
|
|
1434
1434
|
get: function get() {
|
|
1435
|
-
return __importDefault(
|
|
1435
|
+
return __importDefault(ShapArrowLeftFilled_1)["default"];
|
|
1436
1436
|
}
|
|
1437
1437
|
});
|
|
1438
1438
|
|
|
1439
|
-
var
|
|
1439
|
+
var ShapArrowRightFilled_1 = require("./ShapArrowRightFilled");
|
|
1440
1440
|
|
|
1441
|
-
Object.defineProperty(exports, "
|
|
1441
|
+
Object.defineProperty(exports, "ShapArrowRightFilled", {
|
|
1442
1442
|
enumerable: true,
|
|
1443
1443
|
get: function get() {
|
|
1444
|
-
return __importDefault(
|
|
1444
|
+
return __importDefault(ShapArrowRightFilled_1)["default"];
|
|
1445
1445
|
}
|
|
1446
1446
|
});
|
|
1447
1447
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.83",
|
|
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": "9fdda4197f9bfd225a2fd786ad4c178fe16937a5"
|
|
26
26
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
3
|
|
|
4
|
-
function
|
|
4
|
+
function ShapArrowLeftFilled(componentProps: IconProps) {
|
|
5
5
|
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
6
|
<svg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
7
|
<path
|
|
@@ -16,5 +16,5 @@ function ShapArrowLeftOutlined(componentProps: IconProps) {
|
|
|
16
16
|
return <Icon {...componentProps} component={IconNode} />;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
export default
|
|
19
|
+
ShapArrowLeftFilled.displayName = 'ShapArrowLeftFilled';
|
|
20
|
+
export default ShapArrowLeftFilled;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
3
|
|
|
4
|
-
function
|
|
4
|
+
function ShapArrowRightFilled(componentProps: IconProps) {
|
|
5
5
|
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
6
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
7
|
<path
|
|
@@ -16,5 +16,5 @@ function ShapArrowRightOutlined(componentProps: IconProps) {
|
|
|
16
16
|
return <Icon {...componentProps} component={IconNode} />;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
export default
|
|
19
|
+
ShapArrowRightFilled.displayName = 'ShapArrowRightFilled';
|
|
20
|
+
export default ShapArrowRightFilled;
|
|
File without changes
|
|
File without changes
|
package/src/index.tsx
CHANGED
|
@@ -155,8 +155,8 @@ export { default as SettingFilled } from './SettingFilled';
|
|
|
155
155
|
export { default as SettingOutlined } from './SettingOutlined';
|
|
156
156
|
export { default as SettingSquareFilled } from './SettingSquareFilled';
|
|
157
157
|
export { default as SettingSquareOutlined } from './SettingSquareOutlined';
|
|
158
|
-
export { default as
|
|
159
|
-
export { default as
|
|
158
|
+
export { default as ShapArrowLeftFilled } from './ShapArrowLeftFilled';
|
|
159
|
+
export { default as ShapArrowRightFilled } from './ShapArrowRightFilled';
|
|
160
160
|
export { default as ShapeFilled } from './ShapeFilled';
|
|
161
161
|
export { default as ShapeOutlined } from './ShapeOutlined';
|
|
162
162
|
export { default as ShareFilled } from './ShareFilled';
|
|
File without changes
|
|
File without changes
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
<path
|
|
3
3
|
d="M2.16667 14H13.8333V8.19246C13.8333 4.95663 11.2217 2.33329 8 2.33329C4.77833 2.33329 2.16667 4.95663 2.16667 8.19246V14ZM8 0.666626C12.1417 0.666626 15.5 4.03579 15.5 8.19246V15.6666H0.5V8.19246C0.5 4.03579 3.85833 0.666626 8 0.666626ZM5.91667 16.5H10.0833C10.0833 17.0525 9.86384 17.5824 9.47314 17.9731C9.08244 18.3638 8.55253 18.5833 8 18.5833C7.44747 18.5833 6.91756 18.3638 6.52686 17.9731C6.13616 17.5824 5.91667 17.0525 5.91667 16.5Z"
|
|
4
4
|
fill="currentColor" />
|
|
5
|
-
</svg>
|
|
5
|
+
</svg>
|
|
File without changes
|
|
File without changes
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
<path
|
|
3
3
|
d="M2.16667 14H13.8333V8.19246C13.8333 4.95663 11.2217 2.33329 8 2.33329C4.77833 2.33329 2.16667 4.95663 2.16667 8.19246V14ZM8 0.666626C12.1417 0.666626 15.5 4.03579 15.5 8.19246V15.6666H0.5V8.19246C0.5 4.03579 3.85833 0.666626 8 0.666626ZM5.91667 16.5H10.0833C10.0833 17.0525 9.86384 17.5824 9.47314 17.9731C9.08244 18.3638 8.55253 18.5833 8 18.5833C7.44747 18.5833 6.91756 18.3638 6.52686 17.9731C6.13616 17.5824 5.91667 17.0525 5.91667 16.5Z"
|
|
4
4
|
fill="currentColor" />
|
|
5
|
-
</svg>
|
|
5
|
+
</svg>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
-
declare function ShapArrowLeftOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
-
declare namespace ShapArrowLeftOutlined {
|
|
5
|
-
var displayName: string;
|
|
6
|
-
}
|
|
7
|
-
export default ShapArrowLeftOutlined;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
-
declare function ShapArrowRightOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
-
declare namespace ShapArrowRightOutlined {
|
|
5
|
-
var displayName: string;
|
|
6
|
-
}
|
|
7
|
-
export default ShapArrowRightOutlined;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
-
declare function ShapArrowLeftOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
-
declare namespace ShapArrowLeftOutlined {
|
|
5
|
-
var displayName: string;
|
|
6
|
-
}
|
|
7
|
-
export default ShapArrowLeftOutlined;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
-
declare function ShapArrowRightOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
-
declare namespace ShapArrowRightOutlined {
|
|
5
|
-
var displayName: string;
|
|
6
|
-
}
|
|
7
|
-
export default ShapArrowRightOutlined;
|