a-icons 1.1.46 → 1.1.48
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/BookFilled.d.ts +7 -0
- package/es/BookFilled.js +40 -0
- package/es/BookOutlined.d.ts +7 -0
- package/es/BookOutlined.js +42 -0
- package/es/QuestionMarkOutlined.d.ts +7 -0
- package/es/QuestionMarkOutlined.js +41 -0
- package/es/index.d.ts +3 -0
- package/es/index.js +3 -0
- package/lib/BookFilled.d.ts +7 -0
- package/lib/BookFilled.js +83 -0
- package/lib/BookOutlined.d.ts +7 -0
- package/lib/BookOutlined.js +85 -0
- package/lib/QuestionMarkOutlined.d.ts +7 -0
- package/lib/QuestionMarkOutlined.js +84 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +27 -6
- package/package.json +2 -2
- package/src/BookFilled.tsx +27 -0
- package/src/BookOutlined.tsx +32 -0
- package/src/QuestionMarkOutlined.tsx +27 -0
- package/src/index.tsx +3 -0
- package/svgs/filled/book-filled.svg +11 -0
- package/svgs/outlined/book-outlined.svg +11 -0
- package/svgs/outlined/question-mark-outlined.svg +11 -0
- package/tmpAllSvgs/book-filled.svg +11 -0
- package/tmpAllSvgs/book-outlined.svg +11 -0
- package/tmpAllSvgs/question-mark-outlined.svg +11 -0
package/es/BookFilled.js
ADDED
|
@@ -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 BookFilled(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: "M3.5 12.5h17v7a2 2 0 01-2 2h-13a2 2 0 01-2-2v-7z",
|
|
22
|
+
fill: "#fff"
|
|
23
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
clipRule: "evenodd",
|
|
26
|
+
d: "M19 17.5H5v2a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-2zM3.5 16v3.5a2 2 0 002 2h13a2 2 0 002-2V16h-17z",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
fillRule: "evenodd",
|
|
30
|
+
clipRule: "evenodd",
|
|
31
|
+
d: "M3.5 4.5a2 2 0 012-2h13a2 2 0 012 2v12a1 1 0 01-1 1h-15a1 1 0 01-1-1v-12zM9 10.63V5a.5.5 0 01.5-.5h5a.5.5 0 01.5.5v5.63a.5.5 0 01-.752.431l-1.996-1.164a.5.5 0 00-.504 0l-1.996 1.164A.5.5 0 019 10.63z",
|
|
32
|
+
fill: "currentColor"
|
|
33
|
+
}));
|
|
34
|
+
};
|
|
35
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
36
|
+
component: IconNode
|
|
37
|
+
}));
|
|
38
|
+
}
|
|
39
|
+
BookFilled.displayName = 'BookFilled';
|
|
40
|
+
export default BookFilled;
|
|
@@ -0,0 +1,42 @@
|
|
|
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 BookOutlined(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
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M19 17.5H5v2a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-2zM3.5 16v3.5a2 2 0 002 2h13a2 2 0 002-2V16h-17z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
fillRule: "evenodd",
|
|
27
|
+
clipRule: "evenodd",
|
|
28
|
+
d: "M18.5 4h-13a.5.5 0 00-.5.5V16h14V4.5a.5.5 0 00-.5-.5zm-13-1.5a2 2 0 00-2 2v12a1 1 0 001 1h15a1 1 0 001-1v-12a2 2 0 00-2-2h-13z",
|
|
29
|
+
fill: "currentColor"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
fillRule: "evenodd",
|
|
32
|
+
clipRule: "evenodd",
|
|
33
|
+
d: "M9 2.75a.75.75 0 01.75.75v5.599l1.834-1.223a.75.75 0 01.832 0l1.834 1.223V3.5a.75.75 0 011.5 0v7a.75.75 0 01-1.166.624L12 9.401l-2.584 1.723A.75.75 0 018.25 10.5v-7A.75.75 0 019 2.75z",
|
|
34
|
+
fill: "currentColor"
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
38
|
+
component: IconNode
|
|
39
|
+
}));
|
|
40
|
+
}
|
|
41
|
+
BookOutlined.displayName = 'BookOutlined';
|
|
42
|
+
export default BookOutlined;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function QuestionMarkOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace QuestionMarkOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default QuestionMarkOutlined;
|
|
@@ -0,0 +1,41 @@
|
|
|
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 QuestionMarkOutlined(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: "M9.706 8.759a.75.75 0 01-1.418-.488L9 8.507l-.712-.237v-.001l.002-.003.001-.005.004-.012a1.31 1.31 0 01.047-.115c.03-.067.074-.153.134-.252.121-.2.31-.45.597-.697.585-.504 1.513-.935 2.927-.935 1.376 0 2.419.375 3.07 1.153.638.762.762 1.75.677 2.673-.056.608-.378 1.104-.729 1.476-.354.376-.789.682-1.187.92-.4.237-.791.42-1.081.545v.99a.75.75 0 01-1.5 0v-1.5a.75.75 0 01.506-.71m0 0h.003l.019-.007.079-.03a7.941 7.941 0 001.208-.579c.334-.198.64-.422.861-.657.225-.239.313-.435.327-.586.067-.73-.06-1.245-.334-1.573-.262-.313-.795-.615-1.919-.615-1.086 0-1.658.322-1.948.572-.151.13-.243.255-.294.34a.835.835 0 00-.052.097",
|
|
25
|
+
fill: "currentColor"
|
|
26
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M13 17a1 1 0 11-2 0 1 1 0 012 0z",
|
|
28
|
+
fill: "currentColor"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
fillRule: "evenodd",
|
|
31
|
+
clipRule: "evenodd",
|
|
32
|
+
d: "M12 20.5a8.5 8.5 0 100-17 8.5 8.5 0 000 17zm0 1.5c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z",
|
|
33
|
+
fill: "currentColor"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
37
|
+
component: IconNode
|
|
38
|
+
}));
|
|
39
|
+
}
|
|
40
|
+
QuestionMarkOutlined.displayName = 'QuestionMarkOutlined';
|
|
41
|
+
export default QuestionMarkOutlined;
|
package/es/index.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ export { default as BarsOutlined } from './BarsOutlined';
|
|
|
23
23
|
export { default as BellOutlined } from './BellOutlined';
|
|
24
24
|
export { default as BiscuitFilled } from './BiscuitFilled';
|
|
25
25
|
export { default as BiscuitOutlined } from './BiscuitOutlined';
|
|
26
|
+
export { default as BookFilled } from './BookFilled';
|
|
27
|
+
export { default as BookOutlined } from './BookOutlined';
|
|
26
28
|
export { default as BoxAddFilled } from './BoxAddFilled';
|
|
27
29
|
export { default as BoxFilled } from './BoxFilled';
|
|
28
30
|
export { default as BoxOutlined } from './BoxOutlined';
|
|
@@ -207,6 +209,7 @@ export { default as PlusFilled } from './PlusFilled';
|
|
|
207
209
|
export { default as PlusOutlined } from './PlusOutlined';
|
|
208
210
|
export { default as QrCodeFilled } from './QrCodeFilled';
|
|
209
211
|
export { default as QuestionMarkFilled } from './QuestionMarkFilled';
|
|
212
|
+
export { default as QuestionMarkOutlined } from './QuestionMarkOutlined';
|
|
210
213
|
export { default as ReceiptFilled } from './ReceiptFilled';
|
|
211
214
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
212
215
|
export { default as RectBoardOutlined } from './RectBoardOutlined';
|
package/es/index.js
CHANGED
|
@@ -23,6 +23,8 @@ export { default as BarsOutlined } from './BarsOutlined';
|
|
|
23
23
|
export { default as BellOutlined } from './BellOutlined';
|
|
24
24
|
export { default as BiscuitFilled } from './BiscuitFilled';
|
|
25
25
|
export { default as BiscuitOutlined } from './BiscuitOutlined';
|
|
26
|
+
export { default as BookFilled } from './BookFilled';
|
|
27
|
+
export { default as BookOutlined } from './BookOutlined';
|
|
26
28
|
export { default as BoxAddFilled } from './BoxAddFilled';
|
|
27
29
|
export { default as BoxFilled } from './BoxFilled';
|
|
28
30
|
export { default as BoxOutlined } from './BoxOutlined';
|
|
@@ -207,6 +209,7 @@ export { default as PlusFilled } from './PlusFilled';
|
|
|
207
209
|
export { default as PlusOutlined } from './PlusOutlined';
|
|
208
210
|
export { default as QrCodeFilled } from './QrCodeFilled';
|
|
209
211
|
export { default as QuestionMarkFilled } from './QuestionMarkFilled';
|
|
212
|
+
export { default as QuestionMarkOutlined } from './QuestionMarkOutlined';
|
|
210
213
|
export { default as ReceiptFilled } from './ReceiptFilled';
|
|
211
214
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
212
215
|
export { default as RectBoardOutlined } from './RectBoardOutlined';
|
|
@@ -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 BookFilled(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: "M3.5 12.5h17v7a2 2 0 01-2 2h-13a2 2 0 01-2-2v-7z",
|
|
65
|
+
fill: "#fff"
|
|
66
|
+
}), React.createElement("path", {
|
|
67
|
+
fillRule: "evenodd",
|
|
68
|
+
clipRule: "evenodd",
|
|
69
|
+
d: "M19 17.5H5v2a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-2zM3.5 16v3.5a2 2 0 002 2h13a2 2 0 002-2V16h-17z",
|
|
70
|
+
fill: "currentColor"
|
|
71
|
+
}), React.createElement("path", {
|
|
72
|
+
fillRule: "evenodd",
|
|
73
|
+
clipRule: "evenodd",
|
|
74
|
+
d: "M3.5 4.5a2 2 0 012-2h13a2 2 0 012 2v12a1 1 0 01-1 1h-15a1 1 0 01-1-1v-12zM9 10.63V5a.5.5 0 01.5-.5h5a.5.5 0 01.5.5v5.63a.5.5 0 01-.752.431l-1.996-1.164a.5.5 0 00-.504 0l-1.996 1.164A.5.5 0 019 10.63z",
|
|
75
|
+
fill: "currentColor"
|
|
76
|
+
}));
|
|
77
|
+
};
|
|
78
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
79
|
+
component: IconNode
|
|
80
|
+
}));
|
|
81
|
+
}
|
|
82
|
+
BookFilled.displayName = 'BookFilled';
|
|
83
|
+
exports["default"] = BookFilled;
|
|
@@ -0,0 +1,85 @@
|
|
|
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 BookOutlined(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
|
+
fillRule: "evenodd",
|
|
65
|
+
clipRule: "evenodd",
|
|
66
|
+
d: "M19 17.5H5v2a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-2zM3.5 16v3.5a2 2 0 002 2h13a2 2 0 002-2V16h-17z",
|
|
67
|
+
fill: "currentColor"
|
|
68
|
+
}), React.createElement("path", {
|
|
69
|
+
fillRule: "evenodd",
|
|
70
|
+
clipRule: "evenodd",
|
|
71
|
+
d: "M18.5 4h-13a.5.5 0 00-.5.5V16h14V4.5a.5.5 0 00-.5-.5zm-13-1.5a2 2 0 00-2 2v12a1 1 0 001 1h15a1 1 0 001-1v-12a2 2 0 00-2-2h-13z",
|
|
72
|
+
fill: "currentColor"
|
|
73
|
+
}), React.createElement("path", {
|
|
74
|
+
fillRule: "evenodd",
|
|
75
|
+
clipRule: "evenodd",
|
|
76
|
+
d: "M9 2.75a.75.75 0 01.75.75v5.599l1.834-1.223a.75.75 0 01.832 0l1.834 1.223V3.5a.75.75 0 011.5 0v7a.75.75 0 01-1.166.624L12 9.401l-2.584 1.723A.75.75 0 018.25 10.5v-7A.75.75 0 019 2.75z",
|
|
77
|
+
fill: "currentColor"
|
|
78
|
+
}));
|
|
79
|
+
};
|
|
80
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
81
|
+
component: IconNode
|
|
82
|
+
}));
|
|
83
|
+
}
|
|
84
|
+
BookOutlined.displayName = 'BookOutlined';
|
|
85
|
+
exports["default"] = BookOutlined;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function QuestionMarkOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace QuestionMarkOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default QuestionMarkOutlined;
|
|
@@ -0,0 +1,84 @@
|
|
|
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 QuestionMarkOutlined(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: "M9.706 8.759a.75.75 0 01-1.418-.488L9 8.507l-.712-.237v-.001l.002-.003.001-.005.004-.012a1.31 1.31 0 01.047-.115c.03-.067.074-.153.134-.252.121-.2.31-.45.597-.697.585-.504 1.513-.935 2.927-.935 1.376 0 2.419.375 3.07 1.153.638.762.762 1.75.677 2.673-.056.608-.378 1.104-.729 1.476-.354.376-.789.682-1.187.92-.4.237-.791.42-1.081.545v.99a.75.75 0 01-1.5 0v-1.5a.75.75 0 01.506-.71m0 0h.003l.019-.007.079-.03a7.941 7.941 0 001.208-.579c.334-.198.64-.422.861-.657.225-.239.313-.435.327-.586.067-.73-.06-1.245-.334-1.573-.262-.313-.795-.615-1.919-.615-1.086 0-1.658.322-1.948.572-.151.13-.243.255-.294.34a.835.835 0 00-.052.097",
|
|
68
|
+
fill: "currentColor"
|
|
69
|
+
}), React.createElement("path", {
|
|
70
|
+
d: "M13 17a1 1 0 11-2 0 1 1 0 012 0z",
|
|
71
|
+
fill: "currentColor"
|
|
72
|
+
}), React.createElement("path", {
|
|
73
|
+
fillRule: "evenodd",
|
|
74
|
+
clipRule: "evenodd",
|
|
75
|
+
d: "M12 20.5a8.5 8.5 0 100-17 8.5 8.5 0 000 17zm0 1.5c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z",
|
|
76
|
+
fill: "currentColor"
|
|
77
|
+
}));
|
|
78
|
+
};
|
|
79
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
80
|
+
component: IconNode
|
|
81
|
+
}));
|
|
82
|
+
}
|
|
83
|
+
QuestionMarkOutlined.displayName = 'QuestionMarkOutlined';
|
|
84
|
+
exports["default"] = QuestionMarkOutlined;
|
package/lib/index.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ export { default as BarsOutlined } from './BarsOutlined';
|
|
|
23
23
|
export { default as BellOutlined } from './BellOutlined';
|
|
24
24
|
export { default as BiscuitFilled } from './BiscuitFilled';
|
|
25
25
|
export { default as BiscuitOutlined } from './BiscuitOutlined';
|
|
26
|
+
export { default as BookFilled } from './BookFilled';
|
|
27
|
+
export { default as BookOutlined } from './BookOutlined';
|
|
26
28
|
export { default as BoxAddFilled } from './BoxAddFilled';
|
|
27
29
|
export { default as BoxFilled } from './BoxFilled';
|
|
28
30
|
export { default as BoxOutlined } from './BoxOutlined';
|
|
@@ -207,6 +209,7 @@ export { default as PlusFilled } from './PlusFilled';
|
|
|
207
209
|
export { default as PlusOutlined } from './PlusOutlined';
|
|
208
210
|
export { default as QrCodeFilled } from './QrCodeFilled';
|
|
209
211
|
export { default as QuestionMarkFilled } from './QuestionMarkFilled';
|
|
212
|
+
export { default as QuestionMarkOutlined } from './QuestionMarkOutlined';
|
|
210
213
|
export { default as ReceiptFilled } from './ReceiptFilled';
|
|
211
214
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
212
215
|
export { default as RectBoardOutlined } from './RectBoardOutlined';
|
package/lib/index.js
CHANGED
|
@@ -8,12 +8,12 @@ var __importDefault = this && this.__importDefault || function (mod) {
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", {
|
|
9
9
|
value: true
|
|
10
10
|
});
|
|
11
|
-
exports.
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
16
|
-
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 = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareBoxOutlined = void 0;
|
|
11
|
+
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.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BookOutlined = exports.BookFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BellOutlined = exports.BarsOutlined = exports.BarChartFilled = exports.BankCardFilled = exports.AtOutlined = 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.AppstoreOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddFilled = exports.ImpassabilityFilled = void 0;
|
|
12
|
+
exports.EcLogo = exports.EarthOutlined = exports.EarthFilled = 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 = exports.DotCalenderOutlined = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentOutlined = exports.DocumentFilled = exports.DisplayerOutlined = 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.CirclePlusFilled = void 0;
|
|
13
|
+
exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InviteFriendFilled = exports.InsFilled = exports.ImportOutlined = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GiftWithClipFilled = exports.GiftFilled = exports.GarbageCanOutlined = exports.FunnelOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FormOutlined = exports.FolderAddOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = 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 = void 0;
|
|
14
|
+
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.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.OfficeBagOutlined = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = exports.NoteOutlined = exports.NoteFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MenuListOutlined = exports.MediumVolumeOutlined = 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.LinkedinFilled = exports.LineUpOutlined = exports.LineUpFilled = exports.LimitlessFilled = exports.LeftOutlined = void 0;
|
|
15
|
+
exports.SiteMapOutlined = exports.SimpleEarthOutlined = 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.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 = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = void 0;
|
|
16
|
+
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 = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareBoxOutlined = exports.SquareAOutlined = exports.SpeakerOutlined = exports.SpeakerFilled = void 0;
|
|
17
17
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
18
18
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
19
19
|
enumerable: true,
|
|
@@ -189,6 +189,20 @@ Object.defineProperty(exports, "BiscuitOutlined", {
|
|
|
189
189
|
return __importDefault(BiscuitOutlined_1)["default"];
|
|
190
190
|
}
|
|
191
191
|
});
|
|
192
|
+
var BookFilled_1 = require("./BookFilled");
|
|
193
|
+
Object.defineProperty(exports, "BookFilled", {
|
|
194
|
+
enumerable: true,
|
|
195
|
+
get: function get() {
|
|
196
|
+
return __importDefault(BookFilled_1)["default"];
|
|
197
|
+
}
|
|
198
|
+
});
|
|
199
|
+
var BookOutlined_1 = require("./BookOutlined");
|
|
200
|
+
Object.defineProperty(exports, "BookOutlined", {
|
|
201
|
+
enumerable: true,
|
|
202
|
+
get: function get() {
|
|
203
|
+
return __importDefault(BookOutlined_1)["default"];
|
|
204
|
+
}
|
|
205
|
+
});
|
|
192
206
|
var BoxAddFilled_1 = require("./BoxAddFilled");
|
|
193
207
|
Object.defineProperty(exports, "BoxAddFilled", {
|
|
194
208
|
enumerable: true,
|
|
@@ -1477,6 +1491,13 @@ Object.defineProperty(exports, "QuestionMarkFilled", {
|
|
|
1477
1491
|
return __importDefault(QuestionMarkFilled_1)["default"];
|
|
1478
1492
|
}
|
|
1479
1493
|
});
|
|
1494
|
+
var QuestionMarkOutlined_1 = require("./QuestionMarkOutlined");
|
|
1495
|
+
Object.defineProperty(exports, "QuestionMarkOutlined", {
|
|
1496
|
+
enumerable: true,
|
|
1497
|
+
get: function get() {
|
|
1498
|
+
return __importDefault(QuestionMarkOutlined_1)["default"];
|
|
1499
|
+
}
|
|
1500
|
+
});
|
|
1480
1501
|
var ReceiptFilled_1 = require("./ReceiptFilled");
|
|
1481
1502
|
Object.defineProperty(exports, "ReceiptFilled", {
|
|
1482
1503
|
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.48",
|
|
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": "411a832041c1392977983f3b2fc180a51da19beb"
|
|
26
26
|
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function BookFilled(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 d="M3.5 12.5h17v7a2 2 0 01-2 2h-13a2 2 0 01-2-2v-7z" fill="#fff" />
|
|
8
|
+
<path
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
clipRule="evenodd"
|
|
11
|
+
d="M19 17.5H5v2a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-2zM3.5 16v3.5a2 2 0 002 2h13a2 2 0 002-2V16h-17z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
<path
|
|
15
|
+
fillRule="evenodd"
|
|
16
|
+
clipRule="evenodd"
|
|
17
|
+
d="M3.5 4.5a2 2 0 012-2h13a2 2 0 012 2v12a1 1 0 01-1 1h-15a1 1 0 01-1-1v-12zM9 10.63V5a.5.5 0 01.5-.5h5a.5.5 0 01.5.5v5.63a.5.5 0 01-.752.431l-1.996-1.164a.5.5 0 00-.504 0l-1.996 1.164A.5.5 0 019 10.63z"
|
|
18
|
+
fill="currentColor"
|
|
19
|
+
/>
|
|
20
|
+
</svg>
|
|
21
|
+
);
|
|
22
|
+
|
|
23
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
BookFilled.displayName = 'BookFilled';
|
|
27
|
+
export default BookFilled;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function BookOutlined(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
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
d="M19 17.5H5v2a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-2zM3.5 16v3.5a2 2 0 002 2h13a2 2 0 002-2V16h-17z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
fillRule="evenodd"
|
|
15
|
+
clipRule="evenodd"
|
|
16
|
+
d="M18.5 4h-13a.5.5 0 00-.5.5V16h14V4.5a.5.5 0 00-.5-.5zm-13-1.5a2 2 0 00-2 2v12a1 1 0 001 1h15a1 1 0 001-1v-12a2 2 0 00-2-2h-13z"
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
/>
|
|
19
|
+
<path
|
|
20
|
+
fillRule="evenodd"
|
|
21
|
+
clipRule="evenodd"
|
|
22
|
+
d="M9 2.75a.75.75 0 01.75.75v5.599l1.834-1.223a.75.75 0 01.832 0l1.834 1.223V3.5a.75.75 0 011.5 0v7a.75.75 0 01-1.166.624L12 9.401l-2.584 1.723A.75.75 0 018.25 10.5v-7A.75.75 0 019 2.75z"
|
|
23
|
+
fill="currentColor"
|
|
24
|
+
/>
|
|
25
|
+
</svg>
|
|
26
|
+
);
|
|
27
|
+
|
|
28
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
BookOutlined.displayName = 'BookOutlined';
|
|
32
|
+
export default BookOutlined;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function QuestionMarkOutlined(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="M9.706 8.759a.75.75 0 01-1.418-.488L9 8.507l-.712-.237v-.001l.002-.003.001-.005.004-.012a1.31 1.31 0 01.047-.115c.03-.067.074-.153.134-.252.121-.2.31-.45.597-.697.585-.504 1.513-.935 2.927-.935 1.376 0 2.419.375 3.07 1.153.638.762.762 1.75.677 2.673-.056.608-.378 1.104-.729 1.476-.354.376-.789.682-1.187.92-.4.237-.791.42-1.081.545v.99a.75.75 0 01-1.5 0v-1.5a.75.75 0 01.506-.71m0 0h.003l.019-.007.079-.03a7.941 7.941 0 001.208-.579c.334-.198.64-.422.861-.657.225-.239.313-.435.327-.586.067-.73-.06-1.245-.334-1.573-.262-.313-.795-.615-1.919-.615-1.086 0-1.658.322-1.948.572-.151.13-.243.255-.294.34a.835.835 0 00-.052.097"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
<path d="M13 17a1 1 0 11-2 0 1 1 0 012 0z" fill="currentColor" />
|
|
14
|
+
<path
|
|
15
|
+
fillRule="evenodd"
|
|
16
|
+
clipRule="evenodd"
|
|
17
|
+
d="M12 20.5a8.5 8.5 0 100-17 8.5 8.5 0 000 17zm0 1.5c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
|
|
18
|
+
fill="currentColor"
|
|
19
|
+
/>
|
|
20
|
+
</svg>
|
|
21
|
+
);
|
|
22
|
+
|
|
23
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
QuestionMarkOutlined.displayName = 'QuestionMarkOutlined';
|
|
27
|
+
export default QuestionMarkOutlined;
|
package/src/index.tsx
CHANGED
|
@@ -23,6 +23,8 @@ export { default as BarsOutlined } from './BarsOutlined';
|
|
|
23
23
|
export { default as BellOutlined } from './BellOutlined';
|
|
24
24
|
export { default as BiscuitFilled } from './BiscuitFilled';
|
|
25
25
|
export { default as BiscuitOutlined } from './BiscuitOutlined';
|
|
26
|
+
export { default as BookFilled } from './BookFilled';
|
|
27
|
+
export { default as BookOutlined } from './BookOutlined';
|
|
26
28
|
export { default as BoxAddFilled } from './BoxAddFilled';
|
|
27
29
|
export { default as BoxFilled } from './BoxFilled';
|
|
28
30
|
export { default as BoxOutlined } from './BoxOutlined';
|
|
@@ -207,6 +209,7 @@ export { default as PlusFilled } from './PlusFilled';
|
|
|
207
209
|
export { default as PlusOutlined } from './PlusOutlined';
|
|
208
210
|
export { default as QrCodeFilled } from './QrCodeFilled';
|
|
209
211
|
export { default as QuestionMarkFilled } from './QuestionMarkFilled';
|
|
212
|
+
export { default as QuestionMarkOutlined } from './QuestionMarkOutlined';
|
|
210
213
|
export { default as ReceiptFilled } from './ReceiptFilled';
|
|
211
214
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
212
215
|
export { default as RectBoardOutlined } from './RectBoardOutlined';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M3.5 12.5H20.5V19.5C20.5 20.6046 19.6046 21.5 18.5 21.5H5.5C4.39543 21.5 3.5 20.6046 3.5 19.5V12.5Z"
|
|
4
|
+
fill="white" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
+
d="M19 17.5H5V19.5C5 19.7761 5.22386 20 5.5 20H18.5C18.7761 20 19 19.7761 19 19.5V17.5ZM3.5 16V19.5C3.5 20.6046 4.39543 21.5 5.5 21.5H18.5C19.6046 21.5 20.5 20.6046 20.5 19.5V16H3.5Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
9
|
+
d="M3.5 4.5C3.5 3.39543 4.39543 2.5 5.5 2.5H18.5C19.6046 2.5 20.5 3.39543 20.5 4.5V16.5C20.5 17.0523 20.0523 17.5 19.5 17.5H4.5C3.94772 17.5 3.5 17.0523 3.5 16.5V4.5ZM9 10.6295V5C9 4.72386 9.22386 4.5 9.5 4.5H14.5C14.7761 4.5 15 4.72386 15 5V10.6295C15 11.0154 14.5814 11.2558 14.2481 11.0614L12.2519 9.89696C12.0963 9.80615 11.9037 9.80615 11.7481 9.89696L9.75194 11.0614C9.41861 11.2558 9 11.0154 9 10.6295Z"
|
|
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 fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M19 17.5H5V19.5C5 19.7761 5.22386 20 5.5 20H18.5C18.7761 20 19 19.7761 19 19.5V17.5ZM3.5 16V19.5C3.5 20.6046 4.39543 21.5 5.5 21.5H18.5C19.6046 21.5 20.5 20.6046 20.5 19.5V16H3.5Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
+
d="M18.5 4H5.5C5.22386 4 5 4.22386 5 4.5V16H19V4.5C19 4.22386 18.7761 4 18.5 4ZM5.5 2.5C4.39543 2.5 3.5 3.39543 3.5 4.5V16.5C3.5 17.0523 3.94772 17.5 4.5 17.5H19.5C20.0523 17.5 20.5 17.0523 20.5 16.5V4.5C20.5 3.39543 19.6046 2.5 18.5 2.5H5.5Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
9
|
+
d="M9 2.75C9.41421 2.75 9.75 3.08579 9.75 3.5V9.09861L11.584 7.87596C11.8359 7.70801 12.1641 7.70801 12.416 7.87596L14.25 9.09861V3.5C14.25 3.08579 14.5858 2.75 15 2.75C15.4142 2.75 15.75 3.08579 15.75 3.5V10.5C15.75 10.7766 15.5978 11.0307 15.3539 11.1613C15.11 11.2918 14.8141 11.2775 14.584 11.124L12 9.40139L9.41603 11.124C9.18588 11.2775 8.88997 11.2918 8.64611 11.1613C8.40224 11.0307 8.25 10.7766 8.25 10.5V3.5C8.25 3.08579 8.58579 2.75 9 2.75Z"
|
|
10
|
+
fill="currentColor" />
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M9.70637 8.75884C9.70637 8.75884 9.70637 8.75885 9.70637 8.75885C9.56993 9.14187 9.15161 9.3474 8.76376 9.21871C8.37063 9.08826 8.15767 8.66381 8.28812 8.27067L8.99996 8.50687C8.28812 8.27067 8.2883 8.27015 8.28847 8.26962L8.28884 8.26852L8.28961 8.26622L8.29133 8.26119L8.29548 8.2494C8.29857 8.24079 8.30231 8.23069 8.30676 8.21919C8.31566 8.19621 8.32742 8.16759 8.34247 8.13417C8.37254 8.06739 8.41599 7.98093 8.47639 7.88163C8.5973 7.68288 8.78689 7.43153 9.07308 7.1851C9.65835 6.68114 10.5863 6.25 12 6.25C13.3758 6.25 14.4186 6.62508 15.0695 7.40256C15.7083 8.16544 15.8317 9.15393 15.7468 10.0756C15.6908 10.6842 15.369 11.1799 15.0182 11.5524C14.6644 11.928 14.2291 12.2344 13.8306 12.4711C13.4304 12.7089 13.0395 12.8926 12.75 13.0167L12.7501 14.0067C12.7501 14.4209 12.4144 14.7568 12.0002 14.7568C11.586 14.7568 11.2502 14.4211 11.2501 14.0069L11.25 12.5069C11.2499 12.1867 11.4532 11.9018 11.7559 11.7976C11.756 11.7976 11.756 11.7976 11.7561 11.7976M11.7566 11.7974L11.7595 11.7964L11.7779 11.7898C11.7951 11.7836 11.8219 11.7738 11.8569 11.7605C11.927 11.7339 12.0295 11.6935 12.1539 11.6403C12.4044 11.533 12.7348 11.3773 13.0645 11.1815C13.3985 10.9831 13.7045 10.7594 13.9263 10.5239C14.151 10.2853 14.2392 10.0888 14.2531 9.93811C14.3203 9.20806 14.1937 8.69311 13.9194 8.36549C13.6574 8.05247 13.1241 7.75 12 7.75C10.9136 7.75 10.3416 8.07229 10.0518 8.32177C9.90053 8.45206 9.80887 8.57742 9.7579 8.66121C9.73237 8.70318 9.71723 8.73444 9.71019 8.75008C9.70837 8.75411 9.70711 8.75706 9.70637 8.75884"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M13 17C13 17.5523 12.5523 18 12 18C11.4477 18 11 17.5523 11 17C11 16.4477 11.4477 16 12 16C12.5523 16 13 16.4477 13 17Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
9
|
+
d="M12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5ZM12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"
|
|
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="M3.5 12.5H20.5V19.5C20.5 20.6046 19.6046 21.5 18.5 21.5H5.5C4.39543 21.5 3.5 20.6046 3.5 19.5V12.5Z"
|
|
4
|
+
fill="white" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
+
d="M19 17.5H5V19.5C5 19.7761 5.22386 20 5.5 20H18.5C18.7761 20 19 19.7761 19 19.5V17.5ZM3.5 16V19.5C3.5 20.6046 4.39543 21.5 5.5 21.5H18.5C19.6046 21.5 20.5 20.6046 20.5 19.5V16H3.5Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
9
|
+
d="M3.5 4.5C3.5 3.39543 4.39543 2.5 5.5 2.5H18.5C19.6046 2.5 20.5 3.39543 20.5 4.5V16.5C20.5 17.0523 20.0523 17.5 19.5 17.5H4.5C3.94772 17.5 3.5 17.0523 3.5 16.5V4.5ZM9 10.6295V5C9 4.72386 9.22386 4.5 9.5 4.5H14.5C14.7761 4.5 15 4.72386 15 5V10.6295C15 11.0154 14.5814 11.2558 14.2481 11.0614L12.2519 9.89696C12.0963 9.80615 11.9037 9.80615 11.7481 9.89696L9.75194 11.0614C9.41861 11.2558 9 11.0154 9 10.6295Z"
|
|
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 fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M19 17.5H5V19.5C5 19.7761 5.22386 20 5.5 20H18.5C18.7761 20 19 19.7761 19 19.5V17.5ZM3.5 16V19.5C3.5 20.6046 4.39543 21.5 5.5 21.5H18.5C19.6046 21.5 20.5 20.6046 20.5 19.5V16H3.5Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
+
d="M18.5 4H5.5C5.22386 4 5 4.22386 5 4.5V16H19V4.5C19 4.22386 18.7761 4 18.5 4ZM5.5 2.5C4.39543 2.5 3.5 3.39543 3.5 4.5V16.5C3.5 17.0523 3.94772 17.5 4.5 17.5H19.5C20.0523 17.5 20.5 17.0523 20.5 16.5V4.5C20.5 3.39543 19.6046 2.5 18.5 2.5H5.5Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
9
|
+
d="M9 2.75C9.41421 2.75 9.75 3.08579 9.75 3.5V9.09861L11.584 7.87596C11.8359 7.70801 12.1641 7.70801 12.416 7.87596L14.25 9.09861V3.5C14.25 3.08579 14.5858 2.75 15 2.75C15.4142 2.75 15.75 3.08579 15.75 3.5V10.5C15.75 10.7766 15.5978 11.0307 15.3539 11.1613C15.11 11.2918 14.8141 11.2775 14.584 11.124L12 9.40139L9.41603 11.124C9.18588 11.2775 8.88997 11.2918 8.64611 11.1613C8.40224 11.0307 8.25 10.7766 8.25 10.5V3.5C8.25 3.08579 8.58579 2.75 9 2.75Z"
|
|
10
|
+
fill="currentColor" />
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M9.70637 8.75884C9.70637 8.75884 9.70637 8.75885 9.70637 8.75885C9.56993 9.14187 9.15161 9.3474 8.76376 9.21871C8.37063 9.08826 8.15767 8.66381 8.28812 8.27067L8.99996 8.50687C8.28812 8.27067 8.2883 8.27015 8.28847 8.26962L8.28884 8.26852L8.28961 8.26622L8.29133 8.26119L8.29548 8.2494C8.29857 8.24079 8.30231 8.23069 8.30676 8.21919C8.31566 8.19621 8.32742 8.16759 8.34247 8.13417C8.37254 8.06739 8.41599 7.98093 8.47639 7.88163C8.5973 7.68288 8.78689 7.43153 9.07308 7.1851C9.65835 6.68114 10.5863 6.25 12 6.25C13.3758 6.25 14.4186 6.62508 15.0695 7.40256C15.7083 8.16544 15.8317 9.15393 15.7468 10.0756C15.6908 10.6842 15.369 11.1799 15.0182 11.5524C14.6644 11.928 14.2291 12.2344 13.8306 12.4711C13.4304 12.7089 13.0395 12.8926 12.75 13.0167L12.7501 14.0067C12.7501 14.4209 12.4144 14.7568 12.0002 14.7568C11.586 14.7568 11.2502 14.4211 11.2501 14.0069L11.25 12.5069C11.2499 12.1867 11.4532 11.9018 11.7559 11.7976C11.756 11.7976 11.756 11.7976 11.7561 11.7976M11.7566 11.7974L11.7595 11.7964L11.7779 11.7898C11.7951 11.7836 11.8219 11.7738 11.8569 11.7605C11.927 11.7339 12.0295 11.6935 12.1539 11.6403C12.4044 11.533 12.7348 11.3773 13.0645 11.1815C13.3985 10.9831 13.7045 10.7594 13.9263 10.5239C14.151 10.2853 14.2392 10.0888 14.2531 9.93811C14.3203 9.20806 14.1937 8.69311 13.9194 8.36549C13.6574 8.05247 13.1241 7.75 12 7.75C10.9136 7.75 10.3416 8.07229 10.0518 8.32177C9.90053 8.45206 9.80887 8.57742 9.7579 8.66121C9.73237 8.70318 9.71723 8.73444 9.71019 8.75008C9.70837 8.75411 9.70711 8.75706 9.70637 8.75884"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M13 17C13 17.5523 12.5523 18 12 18C11.4477 18 11 17.5523 11 17C11 16.4477 11.4477 16 12 16C12.5523 16 13 16.4477 13 17Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
9
|
+
d="M12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5ZM12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"
|
|
10
|
+
fill="currentColor" />
|
|
11
|
+
</svg>
|