@freightos/icons 1.0.11 → 1.0.12
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/dist/cjs/icons/IconLink.js +54 -0
- package/dist/cjs/icons/IconListBullet.js +58 -0
- package/dist/cjs/icons/IconListNumbered.js +59 -0
- package/dist/cjs/icons/IconTextBold.js +54 -0
- package/dist/cjs/icons/IconTextItalic.js +55 -0
- package/dist/cjs/icons/IconTextUnderline.js +54 -0
- package/dist/cjs/index.js +14 -1
- package/dist/esm/icons/IconLink.js +18 -0
- package/dist/esm/icons/IconListBullet.js +22 -0
- package/dist/esm/icons/IconListNumbered.js +23 -0
- package/dist/esm/icons/IconTextBold.js +18 -0
- package/dist/esm/icons/IconTextItalic.js +19 -0
- package/dist/esm/icons/IconTextUnderline.js +18 -0
- package/dist/esm/index.js +7 -0
- package/dist/types/icons/IconLink.d.ts +3 -0
- package/dist/types/icons/IconListBullet.d.ts +3 -0
- package/dist/types/icons/IconListNumbered.d.ts +3 -0
- package/dist/types/icons/IconTextBold.d.ts +3 -0
- package/dist/types/icons/IconTextItalic.d.ts +3 -0
- package/dist/types/icons/IconTextUnderline.d.ts +3 -0
- package/dist/types/index.d.ts +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.IconLink = void 0;
|
|
37
|
+
const react_1 = __importStar(require("react"));
|
|
38
|
+
const colors_1 = require("../colors");
|
|
39
|
+
exports.IconLink = (0, react_1.forwardRef)(({ size = '1em', color = 'currentColor', style, ...props }, ref) => {
|
|
40
|
+
const resolvedColor = color && color in colors_1.FREIGHTOS_COLORS ? colors_1.FREIGHTOS_COLORS[color] : color;
|
|
41
|
+
return (react_1.default.createElement("svg", { ref: ref, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", color: resolvedColor, style: {
|
|
42
|
+
width: size,
|
|
43
|
+
height: size,
|
|
44
|
+
minWidth: size,
|
|
45
|
+
minHeight: size,
|
|
46
|
+
flexShrink: 0,
|
|
47
|
+
display: 'inline-block',
|
|
48
|
+
verticalAlign: 'middle',
|
|
49
|
+
...style,
|
|
50
|
+
}, ...props },
|
|
51
|
+
react_1.default.createElement("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
52
|
+
react_1.default.createElement("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
53
|
+
});
|
|
54
|
+
exports.IconLink.displayName = 'IconLink';
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.IconListBullet = void 0;
|
|
37
|
+
const react_1 = __importStar(require("react"));
|
|
38
|
+
const colors_1 = require("../colors");
|
|
39
|
+
exports.IconListBullet = (0, react_1.forwardRef)(({ size = '1em', color = 'currentColor', style, ...props }, ref) => {
|
|
40
|
+
const resolvedColor = color && color in colors_1.FREIGHTOS_COLORS ? colors_1.FREIGHTOS_COLORS[color] : color;
|
|
41
|
+
return (react_1.default.createElement("svg", { ref: ref, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", color: resolvedColor, style: {
|
|
42
|
+
width: size,
|
|
43
|
+
height: size,
|
|
44
|
+
minWidth: size,
|
|
45
|
+
minHeight: size,
|
|
46
|
+
flexShrink: 0,
|
|
47
|
+
display: 'inline-block',
|
|
48
|
+
verticalAlign: 'middle',
|
|
49
|
+
...style,
|
|
50
|
+
}, ...props },
|
|
51
|
+
react_1.default.createElement("line", { x1: "8", y1: "6", x2: "21", y2: "6", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
52
|
+
react_1.default.createElement("line", { x1: "8", y1: "12", x2: "21", y2: "12", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
53
|
+
react_1.default.createElement("line", { x1: "8", y1: "18", x2: "21", y2: "18", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
54
|
+
react_1.default.createElement("circle", { cx: "4", cy: "6", r: "1", fill: "currentColor" }),
|
|
55
|
+
react_1.default.createElement("circle", { cx: "4", cy: "12", r: "1", fill: "currentColor" }),
|
|
56
|
+
react_1.default.createElement("circle", { cx: "4", cy: "18", r: "1", fill: "currentColor" })));
|
|
57
|
+
});
|
|
58
|
+
exports.IconListBullet.displayName = 'IconListBullet';
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.IconListNumbered = void 0;
|
|
37
|
+
const react_1 = __importStar(require("react"));
|
|
38
|
+
const colors_1 = require("../colors");
|
|
39
|
+
exports.IconListNumbered = (0, react_1.forwardRef)(({ size = '1em', color = 'currentColor', style, ...props }, ref) => {
|
|
40
|
+
const resolvedColor = color && color in colors_1.FREIGHTOS_COLORS ? colors_1.FREIGHTOS_COLORS[color] : color;
|
|
41
|
+
return (react_1.default.createElement("svg", { ref: ref, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", color: resolvedColor, style: {
|
|
42
|
+
width: size,
|
|
43
|
+
height: size,
|
|
44
|
+
minWidth: size,
|
|
45
|
+
minHeight: size,
|
|
46
|
+
flexShrink: 0,
|
|
47
|
+
display: 'inline-block',
|
|
48
|
+
verticalAlign: 'middle',
|
|
49
|
+
...style,
|
|
50
|
+
}, ...props },
|
|
51
|
+
react_1.default.createElement("line", { x1: "10", y1: "6", x2: "21", y2: "6", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
52
|
+
react_1.default.createElement("line", { x1: "10", y1: "12", x2: "21", y2: "12", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
53
|
+
react_1.default.createElement("line", { x1: "10", y1: "18", x2: "21", y2: "18", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
54
|
+
react_1.default.createElement("path", { d: "M4 6h1v4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
55
|
+
react_1.default.createElement("path", { d: "M3 10h3", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
56
|
+
react_1.default.createElement("path", { d: "M4 16c.5-.5 1.5-.5 2 0s.5 1.5 0 2-1 .5-1.5.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
57
|
+
react_1.default.createElement("path", { d: "M3 14h2.5c.5 0 1 .5 1 1s-.5 1-1 1H4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
58
|
+
});
|
|
59
|
+
exports.IconListNumbered.displayName = 'IconListNumbered';
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.IconTextBold = void 0;
|
|
37
|
+
const react_1 = __importStar(require("react"));
|
|
38
|
+
const colors_1 = require("../colors");
|
|
39
|
+
exports.IconTextBold = (0, react_1.forwardRef)(({ size = '1em', color = 'currentColor', style, ...props }, ref) => {
|
|
40
|
+
const resolvedColor = color && color in colors_1.FREIGHTOS_COLORS ? colors_1.FREIGHTOS_COLORS[color] : color;
|
|
41
|
+
return (react_1.default.createElement("svg", { ref: ref, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", color: resolvedColor, style: {
|
|
42
|
+
width: size,
|
|
43
|
+
height: size,
|
|
44
|
+
minWidth: size,
|
|
45
|
+
minHeight: size,
|
|
46
|
+
flexShrink: 0,
|
|
47
|
+
display: 'inline-block',
|
|
48
|
+
verticalAlign: 'middle',
|
|
49
|
+
...style,
|
|
50
|
+
}, ...props },
|
|
51
|
+
react_1.default.createElement("path", { d: "M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6V4z", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
52
|
+
react_1.default.createElement("path", { d: "M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6V12z", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
53
|
+
});
|
|
54
|
+
exports.IconTextBold.displayName = 'IconTextBold';
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.IconTextItalic = void 0;
|
|
37
|
+
const react_1 = __importStar(require("react"));
|
|
38
|
+
const colors_1 = require("../colors");
|
|
39
|
+
exports.IconTextItalic = (0, react_1.forwardRef)(({ size = '1em', color = 'currentColor', style, ...props }, ref) => {
|
|
40
|
+
const resolvedColor = color && color in colors_1.FREIGHTOS_COLORS ? colors_1.FREIGHTOS_COLORS[color] : color;
|
|
41
|
+
return (react_1.default.createElement("svg", { ref: ref, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", color: resolvedColor, style: {
|
|
42
|
+
width: size,
|
|
43
|
+
height: size,
|
|
44
|
+
minWidth: size,
|
|
45
|
+
minHeight: size,
|
|
46
|
+
flexShrink: 0,
|
|
47
|
+
display: 'inline-block',
|
|
48
|
+
verticalAlign: 'middle',
|
|
49
|
+
...style,
|
|
50
|
+
}, ...props },
|
|
51
|
+
react_1.default.createElement("line", { x1: "19", y1: "4", x2: "10", y2: "4", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
52
|
+
react_1.default.createElement("line", { x1: "14", y1: "20", x2: "5", y2: "20", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
53
|
+
react_1.default.createElement("line", { x1: "15", y1: "4", x2: "9", y2: "20", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
54
|
+
});
|
|
55
|
+
exports.IconTextItalic.displayName = 'IconTextItalic';
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.IconTextUnderline = void 0;
|
|
37
|
+
const react_1 = __importStar(require("react"));
|
|
38
|
+
const colors_1 = require("../colors");
|
|
39
|
+
exports.IconTextUnderline = (0, react_1.forwardRef)(({ size = '1em', color = 'currentColor', style, ...props }, ref) => {
|
|
40
|
+
const resolvedColor = color && color in colors_1.FREIGHTOS_COLORS ? colors_1.FREIGHTOS_COLORS[color] : color;
|
|
41
|
+
return (react_1.default.createElement("svg", { ref: ref, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", color: resolvedColor, style: {
|
|
42
|
+
width: size,
|
|
43
|
+
height: size,
|
|
44
|
+
minWidth: size,
|
|
45
|
+
minHeight: size,
|
|
46
|
+
flexShrink: 0,
|
|
47
|
+
display: 'inline-block',
|
|
48
|
+
verticalAlign: 'middle',
|
|
49
|
+
...style,
|
|
50
|
+
}, ...props },
|
|
51
|
+
react_1.default.createElement("path", { d: "M6 4v6a6 6 0 0 0 6 6 6 6 0 0 0 6-6V4", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
52
|
+
react_1.default.createElement("line", { x1: "4", y1: "20", x2: "20", y2: "20", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
53
|
+
});
|
|
54
|
+
exports.IconTextUnderline.displayName = 'IconTextUnderline';
|
package/dist/cjs/index.js
CHANGED
|
@@ -21,7 +21,7 @@ exports.IconCloseCircle = exports.IconClock = exports.IconClear = exports.IconCl
|
|
|
21
21
|
exports.IconGanttChart = exports.IconFulfillmentCenter = exports.IconFreightosCredit = exports.IconFolder = exports.IconFlag = exports.IconFilter = exports.IconFilledCircle = exports.IconFactory = exports.IconEye = exports.IconEyeInvisible = exports.IconExpress = exports.IconExport = exports.IconExpandAll = exports.IconExit = exports.IconExchange = exports.IconEnvelope = exports.IconEntry = exports.IconEmission = exports.IconEllipsesV = exports.IconEllipsesH = exports.IconEdit = exports.IconEbooking = exports.IconEarn = exports.IconEarlyCancelation = exports.IconDrag = exports.IconDownload = exports.IconDownloadEntry = exports.IconDownloadDocs = exports.IconDownloadAlt = exports.IconDown = exports.IconDoubleRight = exports.IconDoubleLeft = exports.IconDocuments = exports.IconDocument = exports.IconDashboard = exports.IconCutoff = exports.IconCustoms = exports.IconCustomQuote = exports.IconCustomQuoteSolid = exports.IconCurrencyEuro = exports.IconCreditCard = exports.IconCrate = exports.IconCopy = exports.IconContentCopy = exports.IconContainer = exports.IconComparison = exports.IconCompany = exports.IconCommodity = exports.IconColumn = exports.IconClose = void 0;
|
|
22
22
|
exports.IconPending = exports.IconPaypal = exports.IconPay = exports.IconPayLater = exports.IconPallet = exports.IconOffice = exports.IconNotificationBell = exports.IconNegativeCircled = exports.IconMultipleAddress = exports.IconMonitorWeight = exports.IconMoneyCase = exports.IconModeTruck = exports.IconModeTrain = exports.IconModeShip = exports.IconModeAir = exports.IconModeAirFreighter = exports.IconModeAirExpress = exports.IconMinus = exports.IconMinusCircled = exports.IconMessage = exports.IconMenuOpen = exports.IconMenuClose = exports.IconMatrixView = exports.IconMap = exports.IconManageSearch = exports.IconLogout = exports.IconLock = exports.IconLocation = exports.IconLocationCharges = exports.IconLoading = exports.IconList = exports.IconLinkedin = exports.IconLike = exports.IconLeft = exports.IconLastMileDelivery = exports.IconInsurance = exports.IconInfoCircled = exports.IconImageSearch = exports.IconHotDeal = exports.IconHistory = exports.IconHelpCircled = exports.IconHamburger = exports.IconGridOn = exports.IconGraphicTrough = exports.IconGraphicPeak = exports.IconGraphicAverage = exports.IconGraph = exports.IconGpsFull = exports.IconGpsEmpty = exports.IconGoogle = void 0;
|
|
23
23
|
exports.IconTrophy = exports.IconTrendingUp = exports.IconTrendingFlat = exports.IconTrendingDown = exports.IconTrash = exports.IconTotal = exports.IconTotalUnits = exports.IconTimer = exports.IconTile = exports.IconThumbUp = exports.IconTemperatureLow = exports.IconTag = exports.IconTable = exports.IconTableSort = exports.IconSync = exports.IconSyncCircledSolid = exports.IconSubdirectory = exports.IconStatusUpdate = exports.IconStarHalf = exports.IconStarFull = exports.IconStarEmpty = exports.IconSphere = exports.IconSpend = exports.IconShare = exports.IconSettings = exports.IconSend = exports.IconSecurePayment = exports.IconSectionExpand = exports.IconSectionCollapse = exports.IconSearch = exports.IconSearchManager = exports.IconSave = exports.IconRisk = exports.IconRight = exports.IconReview = exports.IconResidential = exports.IconRefund = exports.IconRefresh = exports.IconReceipt = exports.IconRates = exports.IconRateReview = exports.IconPrint = exports.IconPort = exports.IconPlus = exports.IconPlusCircled = exports.IconPlusCircledSolid = exports.IconPlayCircled = exports.IconPin = exports.IconPercentage = exports.IconPeople = void 0;
|
|
24
|
-
exports.IconZoomOut = exports.IconZoomIn = exports.IconWeightLbs = exports.IconWeightKg = exports.IconWarehouse = exports.IconWallet = exports.IconVisibility = exports.IconVisibilityNegative = exports.IconVerified = exports.IconVerifiedCircled = exports.IconUser = exports.IconUserCircled = exports.IconUpload2 = exports.IconUpload = exports.IconUp = exports.IconUnlock = exports.IconUld = void 0;
|
|
24
|
+
exports.IconListNumbered = exports.IconListBullet = exports.IconLink = exports.IconTextUnderline = exports.IconTextItalic = exports.IconTextBold = exports.IconZoomOut = exports.IconZoomIn = exports.IconWeightLbs = exports.IconWeightKg = exports.IconWarehouse = exports.IconWallet = exports.IconVisibility = exports.IconVisibilityNegative = exports.IconVerified = exports.IconVerifiedCircled = exports.IconUser = exports.IconUserCircled = exports.IconUpload2 = exports.IconUpload = exports.IconUp = exports.IconUnlock = exports.IconUld = void 0;
|
|
25
25
|
__exportStar(require("./types"), exports);
|
|
26
26
|
__exportStar(require("./colors"), exports);
|
|
27
27
|
var IconTransactions_1 = require("./icons/IconTransactions");
|
|
@@ -458,3 +458,16 @@ var IconZoomIn_1 = require("./icons/IconZoomIn");
|
|
|
458
458
|
Object.defineProperty(exports, "IconZoomIn", { enumerable: true, get: function () { return IconZoomIn_1.IconZoomIn; } });
|
|
459
459
|
var IconZoomOut_1 = require("./icons/IconZoomOut");
|
|
460
460
|
Object.defineProperty(exports, "IconZoomOut", { enumerable: true, get: function () { return IconZoomOut_1.IconZoomOut; } });
|
|
461
|
+
// Rich text editor icons
|
|
462
|
+
var IconTextBold_1 = require("./icons/IconTextBold");
|
|
463
|
+
Object.defineProperty(exports, "IconTextBold", { enumerable: true, get: function () { return IconTextBold_1.IconTextBold; } });
|
|
464
|
+
var IconTextItalic_1 = require("./icons/IconTextItalic");
|
|
465
|
+
Object.defineProperty(exports, "IconTextItalic", { enumerable: true, get: function () { return IconTextItalic_1.IconTextItalic; } });
|
|
466
|
+
var IconTextUnderline_1 = require("./icons/IconTextUnderline");
|
|
467
|
+
Object.defineProperty(exports, "IconTextUnderline", { enumerable: true, get: function () { return IconTextUnderline_1.IconTextUnderline; } });
|
|
468
|
+
var IconLink_1 = require("./icons/IconLink");
|
|
469
|
+
Object.defineProperty(exports, "IconLink", { enumerable: true, get: function () { return IconLink_1.IconLink; } });
|
|
470
|
+
var IconListBullet_1 = require("./icons/IconListBullet");
|
|
471
|
+
Object.defineProperty(exports, "IconListBullet", { enumerable: true, get: function () { return IconListBullet_1.IconListBullet; } });
|
|
472
|
+
var IconListNumbered_1 = require("./icons/IconListNumbered");
|
|
473
|
+
Object.defineProperty(exports, "IconListNumbered", { enumerable: true, get: function () { return IconListNumbered_1.IconListNumbered; } });
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { FREIGHTOS_COLORS } from '../colors';
|
|
3
|
+
export const IconLink = forwardRef(({ size = '1em', color = 'currentColor', style, ...props }, ref) => {
|
|
4
|
+
const resolvedColor = color && color in FREIGHTOS_COLORS ? FREIGHTOS_COLORS[color] : color;
|
|
5
|
+
return (React.createElement("svg", { ref: ref, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", color: resolvedColor, style: {
|
|
6
|
+
width: size,
|
|
7
|
+
height: size,
|
|
8
|
+
minWidth: size,
|
|
9
|
+
minHeight: size,
|
|
10
|
+
flexShrink: 0,
|
|
11
|
+
display: 'inline-block',
|
|
12
|
+
verticalAlign: 'middle',
|
|
13
|
+
...style,
|
|
14
|
+
}, ...props },
|
|
15
|
+
React.createElement("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
16
|
+
React.createElement("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
17
|
+
});
|
|
18
|
+
IconLink.displayName = 'IconLink';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { FREIGHTOS_COLORS } from '../colors';
|
|
3
|
+
export const IconListBullet = forwardRef(({ size = '1em', color = 'currentColor', style, ...props }, ref) => {
|
|
4
|
+
const resolvedColor = color && color in FREIGHTOS_COLORS ? FREIGHTOS_COLORS[color] : color;
|
|
5
|
+
return (React.createElement("svg", { ref: ref, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", color: resolvedColor, style: {
|
|
6
|
+
width: size,
|
|
7
|
+
height: size,
|
|
8
|
+
minWidth: size,
|
|
9
|
+
minHeight: size,
|
|
10
|
+
flexShrink: 0,
|
|
11
|
+
display: 'inline-block',
|
|
12
|
+
verticalAlign: 'middle',
|
|
13
|
+
...style,
|
|
14
|
+
}, ...props },
|
|
15
|
+
React.createElement("line", { x1: "8", y1: "6", x2: "21", y2: "6", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
16
|
+
React.createElement("line", { x1: "8", y1: "12", x2: "21", y2: "12", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
17
|
+
React.createElement("line", { x1: "8", y1: "18", x2: "21", y2: "18", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
18
|
+
React.createElement("circle", { cx: "4", cy: "6", r: "1", fill: "currentColor" }),
|
|
19
|
+
React.createElement("circle", { cx: "4", cy: "12", r: "1", fill: "currentColor" }),
|
|
20
|
+
React.createElement("circle", { cx: "4", cy: "18", r: "1", fill: "currentColor" })));
|
|
21
|
+
});
|
|
22
|
+
IconListBullet.displayName = 'IconListBullet';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { FREIGHTOS_COLORS } from '../colors';
|
|
3
|
+
export const IconListNumbered = forwardRef(({ size = '1em', color = 'currentColor', style, ...props }, ref) => {
|
|
4
|
+
const resolvedColor = color && color in FREIGHTOS_COLORS ? FREIGHTOS_COLORS[color] : color;
|
|
5
|
+
return (React.createElement("svg", { ref: ref, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", color: resolvedColor, style: {
|
|
6
|
+
width: size,
|
|
7
|
+
height: size,
|
|
8
|
+
minWidth: size,
|
|
9
|
+
minHeight: size,
|
|
10
|
+
flexShrink: 0,
|
|
11
|
+
display: 'inline-block',
|
|
12
|
+
verticalAlign: 'middle',
|
|
13
|
+
...style,
|
|
14
|
+
}, ...props },
|
|
15
|
+
React.createElement("line", { x1: "10", y1: "6", x2: "21", y2: "6", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
16
|
+
React.createElement("line", { x1: "10", y1: "12", x2: "21", y2: "12", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
17
|
+
React.createElement("line", { x1: "10", y1: "18", x2: "21", y2: "18", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
18
|
+
React.createElement("path", { d: "M4 6h1v4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
19
|
+
React.createElement("path", { d: "M3 10h3", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
20
|
+
React.createElement("path", { d: "M4 16c.5-.5 1.5-.5 2 0s.5 1.5 0 2-1 .5-1.5.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
21
|
+
React.createElement("path", { d: "M3 14h2.5c.5 0 1 .5 1 1s-.5 1-1 1H4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
22
|
+
});
|
|
23
|
+
IconListNumbered.displayName = 'IconListNumbered';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { FREIGHTOS_COLORS } from '../colors';
|
|
3
|
+
export const IconTextBold = forwardRef(({ size = '1em', color = 'currentColor', style, ...props }, ref) => {
|
|
4
|
+
const resolvedColor = color && color in FREIGHTOS_COLORS ? FREIGHTOS_COLORS[color] : color;
|
|
5
|
+
return (React.createElement("svg", { ref: ref, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", color: resolvedColor, style: {
|
|
6
|
+
width: size,
|
|
7
|
+
height: size,
|
|
8
|
+
minWidth: size,
|
|
9
|
+
minHeight: size,
|
|
10
|
+
flexShrink: 0,
|
|
11
|
+
display: 'inline-block',
|
|
12
|
+
verticalAlign: 'middle',
|
|
13
|
+
...style,
|
|
14
|
+
}, ...props },
|
|
15
|
+
React.createElement("path", { d: "M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6V4z", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
16
|
+
React.createElement("path", { d: "M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6V12z", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
17
|
+
});
|
|
18
|
+
IconTextBold.displayName = 'IconTextBold';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { FREIGHTOS_COLORS } from '../colors';
|
|
3
|
+
export const IconTextItalic = forwardRef(({ size = '1em', color = 'currentColor', style, ...props }, ref) => {
|
|
4
|
+
const resolvedColor = color && color in FREIGHTOS_COLORS ? FREIGHTOS_COLORS[color] : color;
|
|
5
|
+
return (React.createElement("svg", { ref: ref, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", color: resolvedColor, style: {
|
|
6
|
+
width: size,
|
|
7
|
+
height: size,
|
|
8
|
+
minWidth: size,
|
|
9
|
+
minHeight: size,
|
|
10
|
+
flexShrink: 0,
|
|
11
|
+
display: 'inline-block',
|
|
12
|
+
verticalAlign: 'middle',
|
|
13
|
+
...style,
|
|
14
|
+
}, ...props },
|
|
15
|
+
React.createElement("line", { x1: "19", y1: "4", x2: "10", y2: "4", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
16
|
+
React.createElement("line", { x1: "14", y1: "20", x2: "5", y2: "20", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
17
|
+
React.createElement("line", { x1: "15", y1: "4", x2: "9", y2: "20", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
18
|
+
});
|
|
19
|
+
IconTextItalic.displayName = 'IconTextItalic';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { FREIGHTOS_COLORS } from '../colors';
|
|
3
|
+
export const IconTextUnderline = forwardRef(({ size = '1em', color = 'currentColor', style, ...props }, ref) => {
|
|
4
|
+
const resolvedColor = color && color in FREIGHTOS_COLORS ? FREIGHTOS_COLORS[color] : color;
|
|
5
|
+
return (React.createElement("svg", { ref: ref, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", color: resolvedColor, style: {
|
|
6
|
+
width: size,
|
|
7
|
+
height: size,
|
|
8
|
+
minWidth: size,
|
|
9
|
+
minHeight: size,
|
|
10
|
+
flexShrink: 0,
|
|
11
|
+
display: 'inline-block',
|
|
12
|
+
verticalAlign: 'middle',
|
|
13
|
+
...style,
|
|
14
|
+
}, ...props },
|
|
15
|
+
React.createElement("path", { d: "M6 4v6a6 6 0 0 0 6 6 6 6 0 0 0 6-6V4", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
16
|
+
React.createElement("line", { x1: "4", y1: "20", x2: "20", y2: "20", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
17
|
+
});
|
|
18
|
+
IconTextUnderline.displayName = 'IconTextUnderline';
|
package/dist/esm/index.js
CHANGED
|
@@ -220,3 +220,10 @@ export { IconWeightKg } from './icons/IconWeightKg';
|
|
|
220
220
|
export { IconWeightLbs } from './icons/IconWeightLbs';
|
|
221
221
|
export { IconZoomIn } from './icons/IconZoomIn';
|
|
222
222
|
export { IconZoomOut } from './icons/IconZoomOut';
|
|
223
|
+
// Rich text editor icons
|
|
224
|
+
export { IconTextBold } from './icons/IconTextBold';
|
|
225
|
+
export { IconTextItalic } from './icons/IconTextItalic';
|
|
226
|
+
export { IconTextUnderline } from './icons/IconTextUnderline';
|
|
227
|
+
export { IconLink } from './icons/IconLink';
|
|
228
|
+
export { IconListBullet } from './icons/IconListBullet';
|
|
229
|
+
export { IconListNumbered } from './icons/IconListNumbered';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -217,3 +217,9 @@ export { IconWeightKg } from './icons/IconWeightKg';
|
|
|
217
217
|
export { IconWeightLbs } from './icons/IconWeightLbs';
|
|
218
218
|
export { IconZoomIn } from './icons/IconZoomIn';
|
|
219
219
|
export { IconZoomOut } from './icons/IconZoomOut';
|
|
220
|
+
export { IconTextBold } from './icons/IconTextBold';
|
|
221
|
+
export { IconTextItalic } from './icons/IconTextItalic';
|
|
222
|
+
export { IconTextUnderline } from './icons/IconTextUnderline';
|
|
223
|
+
export { IconLink } from './icons/IconLink';
|
|
224
|
+
export { IconListBullet } from './icons/IconListBullet';
|
|
225
|
+
export { IconListNumbered } from './icons/IconListNumbered';
|
package/package.json
CHANGED