@codecanon/logos 1.0.0 → 1.0.2
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/config.d.ts +8 -0
- package/dist/config.js +11 -0
- package/dist/index.d.ts +7 -4
- package/dist/index.js +24 -5
- package/dist/react/dark-icon.js +5 -2
- package/dist/react/dark-text.js +5 -2
- package/dist/react/default-icon.js +7 -2
- package/dist/react/default-text.js +7 -2
- package/dist/react/light-icon.d.ts +3 -0
- package/dist/react/light-icon.js +101 -0
- package/dist/react/light-text.d.ts +3 -0
- package/dist/react/light-text.js +83 -0
- package/package.json +5 -6
- /package/png/{circle.png → light-circle.png} +0 -0
- /package/png/{default.png → light.png} +0 -0
- /package/svg/{default-icon.svg → light-icon.svg} +0 -0
- /package/svg/{default-text.svg → light-text.svg} +0 -0
package/dist/config.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const PRIMARY_DEFAULT_COLOR = "#5B3B2C";
|
|
2
|
+
export declare const SECONDARY_DEFAULT_COLOR = "#44291E";
|
|
3
|
+
export declare const LETTER_DEFAULT_COLOR = "#6B4E3D";
|
|
4
|
+
export declare const DIACRITIC_DEFAULT_COLOR = "#7D6A56";
|
|
5
|
+
export declare const PRIMARY_DARK_COLOR = "#A38768";
|
|
6
|
+
export declare const SECONDARY_DARK_COLOR = "#7E6347";
|
|
7
|
+
export declare const LETTER_DARK_COLOR = "#A38768";
|
|
8
|
+
export declare const DIACRITIC_DARK_COLOR = "#7E6347";
|
package/dist/config.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DIACRITIC_DARK_COLOR = exports.LETTER_DARK_COLOR = exports.SECONDARY_DARK_COLOR = exports.PRIMARY_DARK_COLOR = exports.DIACRITIC_DEFAULT_COLOR = exports.LETTER_DEFAULT_COLOR = exports.SECONDARY_DEFAULT_COLOR = exports.PRIMARY_DEFAULT_COLOR = void 0;
|
|
4
|
+
exports.PRIMARY_DEFAULT_COLOR = '#5B3B2C';
|
|
5
|
+
exports.SECONDARY_DEFAULT_COLOR = '#44291E';
|
|
6
|
+
exports.LETTER_DEFAULT_COLOR = "#6B4E3D";
|
|
7
|
+
exports.DIACRITIC_DEFAULT_COLOR = "#7D6A56";
|
|
8
|
+
exports.PRIMARY_DARK_COLOR = '#A38768';
|
|
9
|
+
exports.SECONDARY_DARK_COLOR = '#7E6347';
|
|
10
|
+
exports.LETTER_DARK_COLOR = "#A38768";
|
|
11
|
+
exports.DIACRITIC_DARK_COLOR = "#7E6347";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
export { default as CodeCanonDarkIcon } from '
|
|
2
|
-
export { default as CodeCanonDarkText } from '
|
|
3
|
-
export { default as
|
|
4
|
-
export { default as
|
|
1
|
+
export { default as CodeCanonDarkIcon } from '@/react/dark-icon';
|
|
2
|
+
export { default as CodeCanonDarkText } from '@/react/dark-text';
|
|
3
|
+
export { default as CodeCanonLightIcon } from '@/react/light-icon';
|
|
4
|
+
export { default as CodeCanonLightText } from '@/react/light-text';
|
|
5
|
+
export { default as CodeCanonIcon } from '@/react/default-icon';
|
|
6
|
+
export { default as CodeCanonText } from '@/react/default-text';
|
|
7
|
+
export * from '@/config';
|
package/dist/index.js
CHANGED
|
@@ -1,14 +1,33 @@
|
|
|
1
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 __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
2
16
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
17
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
18
|
};
|
|
5
19
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.CodeCanonText = exports.CodeCanonIcon = exports.CodeCanonDarkText = exports.CodeCanonDarkIcon = void 0;
|
|
7
|
-
var dark_icon_1 = require("
|
|
20
|
+
exports.CodeCanonText = exports.CodeCanonIcon = exports.CodeCanonLightText = exports.CodeCanonLightIcon = exports.CodeCanonDarkText = exports.CodeCanonDarkIcon = void 0;
|
|
21
|
+
var dark_icon_1 = require("@/react/dark-icon");
|
|
8
22
|
Object.defineProperty(exports, "CodeCanonDarkIcon", { enumerable: true, get: function () { return __importDefault(dark_icon_1).default; } });
|
|
9
|
-
var dark_text_1 = require("
|
|
23
|
+
var dark_text_1 = require("@/react/dark-text");
|
|
10
24
|
Object.defineProperty(exports, "CodeCanonDarkText", { enumerable: true, get: function () { return __importDefault(dark_text_1).default; } });
|
|
11
|
-
var
|
|
25
|
+
var light_icon_1 = require("@/react/light-icon");
|
|
26
|
+
Object.defineProperty(exports, "CodeCanonLightIcon", { enumerable: true, get: function () { return __importDefault(light_icon_1).default; } });
|
|
27
|
+
var light_text_1 = require("@/react/light-text");
|
|
28
|
+
Object.defineProperty(exports, "CodeCanonLightText", { enumerable: true, get: function () { return __importDefault(light_text_1).default; } });
|
|
29
|
+
var default_icon_1 = require("@/react/default-icon");
|
|
12
30
|
Object.defineProperty(exports, "CodeCanonIcon", { enumerable: true, get: function () { return __importDefault(default_icon_1).default; } });
|
|
13
|
-
var default_text_1 = require("
|
|
31
|
+
var default_text_1 = require("@/react/default-text");
|
|
14
32
|
Object.defineProperty(exports, "CodeCanonText", { enumerable: true, get: function () { return __importDefault(default_text_1).default; } });
|
|
33
|
+
__exportStar(require("@/config"), exports);
|
package/dist/react/dark-icon.js
CHANGED
|
@@ -34,9 +34,12 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
36
|
const React = __importStar(require("react"));
|
|
37
|
-
const
|
|
37
|
+
const config_1 = require("@/config");
|
|
38
|
+
const SVGComponent = (props) => (React.createElement("svg", { id: "Capa_1", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", x: "0px", y: "0px", viewBox: "0 0 2122 2122", xmlSpace: "preserve", width: "24px", height: "24px", ...props },
|
|
38
39
|
React.createElement("defs", null,
|
|
39
|
-
React.createElement("style", null,
|
|
40
|
+
React.createElement("style", null,
|
|
41
|
+
`.codecanon-primary { fill: var(--color-codecanon-primary, ${config_1.PRIMARY_DARK_COLOR}); }`,
|
|
42
|
+
`.codecanon-secondary { fill: var(--color-codecanon-secondary, ${config_1.SECONDARY_DARK_COLOR}); }`)),
|
|
40
43
|
React.createElement("g", null,
|
|
41
44
|
React.createElement("path", { className: "codecanon-primary", d: "M435.633,1789.51c7.611,82.066,74.784,146.228,182.76,146.228c75.551,0,1068.036,0,1068.036,0 v-34.407c-5.466,0-13.203,0-22.938,0v-36.885V1646.15c9.738,0,17.47,0,22.938,0v-34.406V186.739H638.092 c0,0-203.201-25.805-203.201,166.299" }),
|
|
42
45
|
React.createElement("path", { style: {
|
package/dist/react/dark-text.js
CHANGED
|
@@ -33,10 +33,13 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const config_1 = require("@/config");
|
|
36
37
|
const React = __importStar(require("react"));
|
|
37
|
-
const SVGComponent = (props) => (React.createElement("svg", { viewBox: "0 0 1600 896", xmlns: "http://www.w3.org/2000/svg", ...props },
|
|
38
|
+
const SVGComponent = (props) => (React.createElement("svg", { viewBox: "0 0 1600 896", xmlns: "http://www.w3.org/2000/svg", height: "24px", ...props },
|
|
38
39
|
React.createElement("defs", null,
|
|
39
|
-
React.createElement("style", null,
|
|
40
|
+
React.createElement("style", null,
|
|
41
|
+
`.codecanon-letter { fill: var(--color-codecanon-letter, var(--color-codecanon-primary, ${config_1.LETTER_DARK_COLOR})); }`,
|
|
42
|
+
`.codecanon-diacritic { fill: var(--color-codecanon-diacritic, var(--color-codecanon-secondary, ${config_1.DIACRITIC_DARK_COLOR})); }`)),
|
|
40
43
|
React.createElement("rect", { className: "codecanon-letter", width: 148.6, height: 36, x: 89.6, y: 338 }),
|
|
41
44
|
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 223, x: 89.6, y: 338 }),
|
|
42
45
|
React.createElement("rect", { className: "codecanon-letter", width: 148.6, height: 36, x: 89.6, y: 525.1 }),
|
|
@@ -33,10 +33,15 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const config_1 = require("@/config");
|
|
36
37
|
const React = __importStar(require("react"));
|
|
37
|
-
const SVGComponent = (props) => (React.createElement("svg", { id: "Capa_1", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", x: "0px", y: "0px", viewBox: "0 0 2122 2122", xmlSpace: "preserve", ...props },
|
|
38
|
+
const SVGComponent = (props) => (React.createElement("svg", { id: "Capa_1", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", x: "0px", y: "0px", viewBox: "0 0 2122 2122", xmlSpace: "preserve", width: "24px", height: "24px", ...props },
|
|
38
39
|
React.createElement("defs", null,
|
|
39
|
-
React.createElement("style", null,
|
|
40
|
+
React.createElement("style", null,
|
|
41
|
+
`.codecanon-primary { fill: var(--color-codecanon-primary, ${config_1.PRIMARY_DEFAULT_COLOR}); }`,
|
|
42
|
+
`.codecanon-secondary { fill: var(--color-codecanon-secondary, ${config_1.SECONDARY_DEFAULT_COLOR}); }`,
|
|
43
|
+
`.dark .codecanon-primary { fill: var(--color-codecanon-primary, ${config_1.PRIMARY_DARK_COLOR}); }`,
|
|
44
|
+
`.dark .codecanon-secondary { fill: var(--color-codecanon-secondary, ${config_1.SECONDARY_DARK_COLOR}); }`)),
|
|
40
45
|
React.createElement("g", null,
|
|
41
46
|
React.createElement("path", { className: "codecanon-primary", d: "M435.633,1789.51c7.611,82.066,74.784,146.228,182.76,146.228c75.551,0,1068.036,0,1068.036,0 v-34.407c-5.466,0-13.203,0-22.938,0v-36.885V1646.15c9.738,0,17.47,0,22.938,0v-34.406V186.739H638.092 c0,0-203.201-25.805-203.201,166.299" }),
|
|
42
47
|
React.createElement("path", { style: {
|
|
@@ -33,10 +33,15 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const config_1 = require("@/config");
|
|
36
37
|
const React = __importStar(require("react"));
|
|
37
|
-
const SVGComponent = (props) => (React.createElement("svg", { viewBox: "0 0 1600 896", xmlns: "http://www.w3.org/2000/svg", ...props },
|
|
38
|
+
const SVGComponent = (props) => (React.createElement("svg", { viewBox: "0 0 1600 896", xmlns: "http://www.w3.org/2000/svg", height: "24px", ...props },
|
|
38
39
|
React.createElement("defs", null,
|
|
39
|
-
React.createElement("style", null,
|
|
40
|
+
React.createElement("style", null,
|
|
41
|
+
`.codecanon-letter { fill: var(--color-codecanon-letter, var(--color-codecanon-primary, ${config_1.LETTER_DEFAULT_COLOR})); }`,
|
|
42
|
+
`.codecanon-diacritic { fill: var(--color-codecanon-diacritic, var(--color-codecanon-secondary, ${config_1.DIACRITIC_DEFAULT_COLOR})); }`,
|
|
43
|
+
`.dark .codecanon-letter { fill: var(--color-codecanon-letter, var(--color-codecanon-primary, ${config_1.LETTER_DARK_COLOR})); }`,
|
|
44
|
+
`.dark .codecanon-diacritic { fill: var(--color-codecanon-diacritic, var(--color-codecanon-secondary, ${config_1.DIACRITIC_DARK_COLOR})); }`)),
|
|
40
45
|
React.createElement("rect", { className: "codecanon-letter", width: 148.6, height: 36, x: 89.6, y: 338 }),
|
|
41
46
|
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 223, x: 89.6, y: 338 }),
|
|
42
47
|
React.createElement("rect", { className: "codecanon-letter", width: 148.6, height: 36, x: 89.6, y: 525.1 }),
|
|
@@ -0,0 +1,101 @@
|
|
|
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
|
+
const config_1 = require("@/config");
|
|
37
|
+
const React = __importStar(require("react"));
|
|
38
|
+
const SVGComponent = (props) => (React.createElement("svg", { id: "Capa_1", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", x: "0px", y: "0px", viewBox: "0 0 2122 2122", xmlSpace: "preserve", width: "24px", height: "24px", ...props },
|
|
39
|
+
React.createElement("defs", null,
|
|
40
|
+
React.createElement("style", null,
|
|
41
|
+
`.codecanon-primary { fill: var(--color-codecanon-primary, ${config_1.PRIMARY_DEFAULT_COLOR}); }`,
|
|
42
|
+
`.codecanon-secondary { fill: var(--color-codecanon-secondary, ${config_1.SECONDARY_DEFAULT_COLOR}); }`)),
|
|
43
|
+
React.createElement("g", null,
|
|
44
|
+
React.createElement("path", { className: "codecanon-primary", d: "M435.633,1789.51c7.611,82.066,74.784,146.228,182.76,146.228c75.551,0,1068.036,0,1068.036,0 v-34.407c-5.466,0-13.203,0-22.938,0v-36.885V1646.15c9.738,0,17.47,0,22.938,0v-34.406V186.739H638.092 c0,0-203.201-25.805-203.201,166.299" }),
|
|
45
|
+
React.createElement("path", { style: {
|
|
46
|
+
fill: "#FFFFFF",
|
|
47
|
+
}, d: "M1663.491,1678.817v-11.431h0v-21.236c0,0-924.437,0-1024.005,0c-18.57,0-35.63,1.992-51.104,5.682 c0,0,0,0,0,0c-3.844,0.916-7.561,1.968-11.208,3.091c-0.642,0.198-1.285,0.392-1.921,0.596c-3.523,1.129-6.963,2.344-10.295,3.66 c-0.453,0.179-0.891,0.372-1.341,0.554c-3.181,1.29-6.279,2.658-9.28,4.111c-0.312,0.151-0.635,0.291-0.945,0.444 c-3.119,1.538-6.123,3.178-9.044,4.886c-0.542,0.317-1.08,0.639-1.616,0.962c-2.893,1.744-5.709,3.552-8.399,5.458 c-0.196,0.139-0.38,0.287-0.575,0.427c-2.567,1.84-5.026,3.762-7.404,5.742c-0.391,0.325-0.792,0.643-1.178,0.972 c-1.115,0.951-2.194,1.928-3.265,2.91c0,0,0,0,0,0c-1.24,1.135-2.46,2.286-3.641,3.46c-0.407,0.405-0.801,0.818-1.201,1.227 c-0.977,1-1.87,2.053-2.806,3.081c-0.373,0.409-0.806,0.777-1.172,1.191c0.028,0.001,0.056,0.002,0.084,0.004 c-0.17,0.192-0.326,0.392-0.495,0.584c-1.056,1.206-2.1,2.417-3.1,3.657c-1.577,1.926-3.106,3.882-4.53,5.899 c-0.341,0.483-0.685,0.963-1.019,1.451c-1.695,2.48-3.296,5.011-4.784,7.602c-0.244,0.425-0.468,0.857-0.707,1.285 c-1.378,2.471-2.67,4.986-3.86,7.548c-0.147,0.316-0.309,0.625-0.453,0.943c-1.236,2.725-2.342,5.509-3.365,8.327 c-0.216,0.595-0.426,1.19-0.632,1.79c-0.977,2.839-1.872,5.711-2.634,8.634c-0.085,0.326-0.151,0.659-0.233,0.986 c-0.022,0.087-0.034,0.177-0.056,0.264c-0.009,0.033-0.021,0.064-0.029,0.098c0.003,0,0.005,0,0.008,0 c-0.652,2.636-1.222,5.302-1.699,7.999c-0.094,0.534-0.202,1.062-0.289,1.598c-0.486,2.977-0.858,5.991-1.128,9.034 c-0.056,0.634-0.098,1.271-0.145,1.907c-0.232,3.149-0.39,6.32-0.39,9.528c0,0.714,0.042,1.418,0.053,2.13c0,0.001,0,0.002,0,0.003 c0.051,3.149,0.21,6.27,0.485,9.359c0.001,0.003,0,0.006,0.001,0.009l0,0c1.006,11.252,3.585,22.043,7.501,32.262 c-0.047-0.005-0.094-0.01-0.141-0.016c0.542,1.416,1.135,2.81,1.736,4.2c0.15,0.346,0.281,0.7,0.434,1.045 c0.757,1.704,1.555,3.391,2.388,5.059c0.001,0.002,0.001,0.004,0.002,0.005c2.077,4.158,4.382,8.206,6.964,12.105 c2.322,3.507,4.847,6.904,7.571,10.179c1.362,1.637,2.774,3.245,4.236,4.82c26.303,28.357,68.614,46.432,124.621,46.432 c65.524,0,1024.005,0,1024.005,0v-36.885h0v-5.212h0v-10.13h0v-24.6h0v-11.266h0v-16.594h0v-11.332h0v-23.768h0v-7.606h0v-36.749h0 v-12.01h0L1663.491,1678.817L1663.491,1678.817z" }),
|
|
48
|
+
React.createElement("g", null,
|
|
49
|
+
React.createElement("path", { style: {
|
|
50
|
+
fill: "#BFD1ED",
|
|
51
|
+
}, d: "M709.221,1864.446c-44.764,0-80.745-11.572-106.83-30.686c29.431,1.034,58.881,1.617,88.323,1.52 c12.562-0.042,25.127-0.302,37.685-0.633c12.667-0.333,25.073-1.463,37.674-2.757c0.89-0.091,0.927-1.379,0-1.414 c-11.269-0.418-22.431-1.017-33.708-0.943c-10.578,0.069-21.156,0.058-31.733-0.033c-21.822-0.187-43.636-0.508-65.447-1.255 c-14.07-0.482-28.126-1.206-42.174-2.038c-24.697-21.957-38.318-51.666-39.523-84.565c0.513-0.02,1.026-0.026,1.539-0.047 c36.121-1.479,72.015-4.776,107.916-8.909c19.902-2.292,39.612-4.756,59.251-8.744l-0.104-0.772 c-35.573,2.216-70.989,5.855-106.613,7.572c-20.667,0.996-41.34,1.781-62.019,2.265c0.377-12.792,2.605-25.114,6.652-36.691 c10.87,0.204,21.766,0.609,32.413-1.522c1.524-0.304,1.473-2.691,0-3.03c-9.632-2.221-19.537-2.505-29.43-3.036 c5.874-13.63,14.331-26.096,25.288-36.897c0,0,0,0,0,0c-3.844,0.916-7.561,1.968-11.208,3.091 c-0.642,0.198-1.285,0.392-1.921,0.596c-3.523,1.129-6.963,2.344-10.295,3.66c-0.453,0.179-0.891,0.372-1.341,0.554 c-3.181,1.29-6.279,2.658-9.28,4.111c-0.312,0.151-0.635,0.291-0.945,0.444c-3.119,1.538-6.123,3.178-9.044,4.886 c-0.542,0.317-1.08,0.639-1.616,0.962c-2.893,1.744-5.709,3.552-8.399,5.458c-0.196,0.139-0.38,0.287-0.575,0.427 c-2.567,1.84-5.026,3.762-7.404,5.742c-0.391,0.325-0.792,0.643-1.178,0.972c-1.102,0.94-2.106,1.949-3.165,2.92 c-0.034-0.003-0.066-0.007-0.1-0.01c0,0,0,0,0,0c-0.386,0.354-0.71,0.75-1.091,1.108c-0.841,0.791-1.737,1.544-2.551,2.353 c-0.407,0.405-0.801,0.818-1.201,1.227c-0.977,1-1.87,2.053-2.806,3.081c-0.373,0.409-0.806,0.777-1.172,1.191 c0.028,0.001,0.056,0.002,0.084,0.004c-2.897,3.266-5.644,6.626-8.125,10.14c-0.341,0.483-0.685,0.963-1.019,1.451 c-1.695,2.48-3.296,5.011-4.784,7.602c-0.244,0.425-0.468,0.857-0.707,1.285c-1.378,2.471-2.67,4.986-3.86,7.548 c-0.147,0.316-0.309,0.625-0.453,0.943c-1.236,2.725-2.342,5.509-3.365,8.327c-0.216,0.595-0.426,1.19-0.632,1.79 c-0.977,2.839-1.872,5.711-2.634,8.634c-0.085,0.326-0.151,0.659-0.233,0.986c-0.021,0.086-0.034,0.176-0.055,0.263 c-0.009,0.033-0.022,0.065-0.03,0.099c0.003,0,0.005,0,0.008,0c-0.654,2.636-1.222,5.302-1.699,7.999 c-0.094,0.534-0.202,1.062-0.289,1.598c-0.486,2.977-0.858,5.991-1.128,9.034c-0.056,0.634-0.098,1.271-0.145,1.907 c-0.232,3.149-0.39,6.32-0.39,9.528c0,0.714,0.042,1.418,0.053,2.13c0,0.001,0,0.002,0,0.003c0.051,3.149,0.21,6.27,0.485,9.359 c0.001,0.003,0,0.006,0.001,0.009l0,0c1.006,11.252,3.585,22.043,7.501,32.262c-0.047-0.005-0.094-0.01-0.141-0.016 c0.542,1.416,1.135,2.81,1.736,4.2c0.15,0.346,0.281,0.7,0.434,1.045c0.757,1.704,1.555,3.391,2.388,5.059 c0.001,0.002,0.001,0.004,0.002,0.005c2.077,4.158,4.382,8.206,6.964,12.105c2.322,3.507,4.847,6.904,7.571,10.179 c1.362,1.637,2.774,3.245,4.236,4.82c26.303,28.357,68.614,46.432,124.621,46.432c65.524,0,1024.005,0,1024.005,0v-36.885h0 C1441.72,1864.446,763.953,1864.446,709.221,1864.446z" }),
|
|
52
|
+
React.createElement("path", { style: {
|
|
53
|
+
fill: "#BFD1ED",
|
|
54
|
+
}, d: "M1638.501,1705.202c-37.115,0.019-74.231-0.005-111.346,0.077 c-73.253,0.161-146.547,0.929-219.772-1.528c-20.592-0.691-41.171-1.65-61.737-2.883c-20.899-1.253-41.704-3.135-62.632-3.701 l-0.053,0.307c35.579,6.618,72.218,8.245,108.313,10.24c36.847,2.035,73.743,3.223,110.632,4.197 c73.701,1.944,147.427,3.11,221.14,4.472c13.471,0.25,26.957,0.553,40.447,0.804h0v-12.01h0 C1655.158,1705.18,1646.827,1705.198,1638.501,1705.202z" }),
|
|
55
|
+
React.createElement("path", { style: {
|
|
56
|
+
fill: "#BFD1ED",
|
|
57
|
+
}, d: "M1621.243,1754.031c-43.745-0.14-87.489-0.763-131.22-1.867c-24.672-0.623-49.43-0.96-74.092-0.111 c-1.034,0.035-0.984,1.457,0,1.571c43.469,5.039,87.466,5.595,131.182,6.558c38.787,0.854,77.582,1.265,116.378,1.36h0v-7.606h0 C1649.408,1753.991,1635.326,1754.077,1621.243,1754.031z" }),
|
|
58
|
+
React.createElement("path", { style: {
|
|
59
|
+
fill: "#BFD1ED",
|
|
60
|
+
}, d: "M1604.261,1812.165c-70.802-0.88-141.606-1.157-212.411-0.546 c-39.766,0.343-79.495,1.152-119.242,2.419c-0.907,0.029-0.913,1.402,0,1.414c70.478,0.917,140.961,1.742,211.429,3.316 c59.841,1.337,119.645,3.531,179.455,5.736h0v-11.266h0C1643.751,1812.783,1624.01,1812.411,1604.261,1812.165z" }),
|
|
61
|
+
React.createElement("path", { style: {
|
|
62
|
+
fill: "#BFD1ED",
|
|
63
|
+
}, d: "M1661.612,1849.174c-50.002,1.647-100.076,2.271-150.054,4.469 c-28.674,1.261-57.342,1.758-86.041,2.129c-0.911,0.012-0.911,1.393,0,1.414c50.692,1.122,101.363,2.507,152.069,2.688 c28.633,0.102,57.27-0.18,85.905-0.64h0v-10.13h0C1662.864,1849.125,1662.238,1849.154,1661.612,1849.174z" }),
|
|
64
|
+
React.createElement("path", { style: {
|
|
65
|
+
fill: "#BFD1ED",
|
|
66
|
+
}, d: "M1663.491,1667.386c-6.361,0.14-12.722,0.293-19.084,0.426 c-48.73,1.016-97.489,1.434-146.229,1.271c-28.033-0.094-56.068-1.439-84.093-0.825c-1.03,0.022-0.988,1.469,0,1.571 c24.61,2.542,49.367,3.17,74.08,4.197c24.702,1.027,49.397,2.134,74.108,2.934c33.708,1.091,67.469,1.759,101.218,1.858h0 L1663.491,1667.386z" }),
|
|
67
|
+
React.createElement("path", { style: {
|
|
68
|
+
fill: "#BFD1ED",
|
|
69
|
+
}, d: "M1575.292,1784.651c-20.602-0.517-41.084-1.018-61.694-0.569c-0.594,0.013-0.779,0.967-0.147,1.08 c35.549,6.34,71.65,8.258,107.673,10.054c14.102,0.703,28.231,1.137,42.366,1.427h0v-11.332h0 C1634.092,1785.539,1604.672,1785.389,1575.292,1784.651z" }),
|
|
70
|
+
React.createElement("path", { style: {
|
|
71
|
+
fill: "#BFD1ED",
|
|
72
|
+
}, d: "M666.81,1761.119c-10.403,0.561-20.764,1.239-31.128,2.315 c-10.099,1.048-20.785,1.119-30.395,4.516c-0.94,0.333-0.997,1.658,0,1.97c8.51,2.657,17.523,2.541,26.379,3.176 c9.37,0.672,18.724,1.256,28.115,1.518c18.745,0.521,37.482,0.247,56.233,0.18c37.154-0.133,74.31-2.47,111.469-3.125 c74.65-1.317,149.29-2.078,223.952-1.642c41.857,0.244,83.746,1.013,125.6,0.416c1.519-0.021,1.516-2.308,0-2.356 c-74.274-2.343-148.708-2.098-223.014-3.128c-74.66-1.035-149.304-3.466-223.949-4.883 C709.076,1759.677,687.779,1759.987,666.81,1761.119z" }),
|
|
73
|
+
React.createElement("path", { style: {
|
|
74
|
+
fill: "#BFD1ED",
|
|
75
|
+
}, d: "M1010.741,1729.376c42.025,4.46,84.187,6.388,126.337,9.219 c41.772,2.805,83.556,5.342,125.415,6.389c23.95,0.599,47.46-0.826,71.261-3.138c0.819-0.08,0.795-1.15,0-1.257 c-21.024-2.813-41.974-5.533-63.232-6.124c-21.076-0.585-42.138-1.084-63.22-1.413c-41.805-0.653-83.595-1.335-125.383-2.724 c-23.731-0.789-47.432-1.53-71.178-1.738C1010.225,1728.586,1010.249,1729.324,1010.741,1729.376z" }),
|
|
76
|
+
React.createElement("path", { style: {
|
|
77
|
+
fill: "#BFD1ED",
|
|
78
|
+
}, d: "M672.439,1671.616c22.234,1.772,44.738,1.496,67.034,2.161c22.343,0.667,44.684,1.407,67.022,2.223 c43.993,1.606,87.996,2.775,131.993,4.289c25.312,0.871,50.637,1.064,75.958,1.615c0.718,0.015,0.694-1.037,0-1.1 c-88.527-8.034-177.122-12.493-265.97-15.054c-25.256-0.728-50.784-2.404-76.038-1.518 C667.642,1664.4,667.738,1671.241,672.439,1671.616z" }),
|
|
79
|
+
React.createElement("path", { style: {
|
|
80
|
+
fill: "#BFD1ED",
|
|
81
|
+
}, d: "M887.928,1837.846c11.046,1.649,22.475,0.939,33.622,0.99c11.725,0.053,23.447,0.014,35.172-0.032 c23.13-0.091,46.215-0.036,69.339,0.487c46.554,1.054,93.125,0.698,139.683,1.64c12.691,0.257,25.501,0.795,38.187,0.137 c6.738-0.349,13.347-2.058,20.098-2.462c5.963-0.357,11.644-0.583,16.793-3.904c0.901-0.581,0.923-1.866,0-2.442 c-4.291-2.678-8.794-3.268-13.778-3.523c-6.144-0.315-12.139-0.933-18.234-1.765c-11.394-1.556-23.556-0.494-35.026-0.086 c-23.113,0.823-46.216,1.645-69.339,2.114c-46.569,0.945-93.111,2.885-139.683,3.416c-12.73,0.144-25.459,0.245-38.187,0.498 c-12.773,0.254-26.02-0.489-38.646,1.598C886.29,1834.783,886.265,1837.597,887.928,1837.846z" }),
|
|
82
|
+
React.createElement("path", { style: {
|
|
83
|
+
fill: "#BFD1ED",
|
|
84
|
+
}, d: "M1288.634,1772.864c-7.279-0.098-14.465,0.976-21.714,0.979c-0.773,0-0.992,1.237-0.189,1.388 c7.052,1.329,13.818,3.571,20.964,4.568c6.877,0.959,13.78,1.611,20.705,2.083c14.172,0.966,28.361,1.676,42.557,2.13 c14.165,0.453,28.421,0.945,42.592,0.575c7.273-0.19,14.549-0.711,21.787-1.424c6.721-0.662,13.985-0.453,20.526-2.149 c2.469-0.64,2.767-4.865,0-5.302c-6.689-1.057-13.754-0.319-20.526-0.554c-6.931-0.241-13.861-0.375-20.797-0.422 c-14.196-0.096-28.391,0.352-42.592,0.176c-13.863-0.172-27.722-0.59-41.57-1.252 C1303.131,1773.314,1295.89,1772.962,1288.634,1772.864z" }),
|
|
85
|
+
React.createElement("path", { style: {
|
|
86
|
+
fill: "#BFD1ED",
|
|
87
|
+
}, d: "M778.192,1722.135c7.637-0.593,15.252-1.149,22.912-1.371c15.694-0.456,31.423-0.216,47.118,0.105 c31.126,0.638,62.013,1.759,92.582-5.299c1.125-0.26,0.876-2.024-0.271-2.006c-31.391,0.502-62.858-0.761-94.239-1.631 c-15.392-0.427-30.761-0.664-46.148,0.1c-7.63,0.379-15.331,0.824-22.906,1.854c-7.967,1.084-15.522,3.647-23.129,6.151 c-1.52,0.501-1.365,3.047,0.397,2.932C762.4,1722.457,770.304,1722.748,778.192,1722.135z" }),
|
|
88
|
+
React.createElement("path", { style: {
|
|
89
|
+
fill: "#BFD1ED",
|
|
90
|
+
}, d: "M1102.705,1668.332c39.428,5.046,79.133,6.59,118.762,9.339 c39.604,2.747,79.249,4.665,118.949,5.052c11.329,0.11,22.671,0.281,34,0.163c10.453-0.108,22.493,0.22,32.397-3.389 c1.396-0.509,1.432-2.382,0-2.879c-8.887-3.084-19.074-2.712-28.397-3.05c-9.985-0.363-20.007-0.173-30-0.272 c-19.665-0.194-39.327-0.502-58.992-0.688c-39.661-0.374-79.275-1.174-118.886-3.255c-22.621-1.188-45.192-2.661-67.833-3.379 C1101.148,1665.927,1101.248,1668.146,1102.705,1668.332z" })),
|
|
91
|
+
React.createElement("rect", { x: 711.47, y: 1373.765, className: "codecanon-secondary", width: 162.358, height: 34.406 }),
|
|
92
|
+
React.createElement("rect", { x: 711.47, y: 1437.56, className: "codecanon-secondary", width: 297.259, height: 34.406 }),
|
|
93
|
+
React.createElement("rect", { x: 711.47, y: 1501.355, className: "codecanon-secondary", width: 331.88, height: 34.407 }),
|
|
94
|
+
React.createElement("g", { transform: "translate(910, 400)" },
|
|
95
|
+
React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "500px", height: "500px", viewBox: "0 0 24 24", fill: "none", stroke: "#44291e", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", className: "lucide lucide-code-xml-icon lucide-code-xml", ...props },
|
|
96
|
+
React.createElement("path", { d: "m18 16 4-4-4-4" }),
|
|
97
|
+
React.createElement("path", { d: "m6 8-4 4 4 4" }),
|
|
98
|
+
React.createElement("path", { d: "m14.5 4-5 16" }))),
|
|
99
|
+
React.createElement("path", { className: "codecanon-secondary", d: "M596.889,186.17v234.724v151.389v27.525v27.526v985.299c6.977-0.582,14.142-0.89,21.504-0.89 c5.009,0,11.647,0,19.7,0V186.739l0,0c0,0-0.13-0.016-0.323-0.038c-0.11-0.013-0.235-0.027-0.406-0.045 c-0.041-0.005-0.083-0.009-0.127-0.014c-0.219-0.023-0.48-0.051-0.78-0.081c-0.059-0.006-0.112-0.011-0.174-0.017 c-0.358-0.035-0.76-0.073-1.218-0.115c-0.005-0.001-0.01-0.001-0.015-0.001C629.125,185.896,615.018,184.983,596.889,186.17z" }),
|
|
100
|
+
React.createElement("path", { className: "codecanon-secondary", d: "M638.092,1611.743c-8.052,0-14.691,0-19.7,0c-7.362,0-14.527,0.308-21.504,0.89 c-101.822,8.491-161.997,77.376-161.997,161.107c0,5.322,0.26,10.579,0.742,15.77c7.611,82.066,74.784,146.228,182.76,146.228 c75.551,0,1068.036,0,1068.036,0v-34.407c-5.466,0-13.203,0-22.938,0c0,0-958.481,0-1024.005,0 c-56.007,0-98.318-18.074-124.621-46.432c-1.461-1.575-2.874-3.182-4.236-4.82c-2.724-3.275-5.248-6.672-7.571-10.179 c-2.582-3.899-4.887-7.947-6.964-12.105l0,0c-0.001-0.002-0.001-0.003-0.002-0.005c-0.834-1.669-1.636-3.352-2.388-5.059 c-0.153-0.345-0.284-0.699-0.434-1.045c-4.892-11.42-7.954-23.658-9.097-36.445l0,0c-0.001-0.003,0-0.006-0.001-0.009 c-0.276-3.089-0.434-6.211-0.485-9.359c0-0.001,0-0.001,0-0.003l0,0c-0.011-0.711-0.053-1.415-0.053-2.13 c0-3.209,0.157-6.379,0.39-9.528c0.047-0.637,0.089-1.274,0.145-1.907c0.27-3.043,0.642-6.056,1.128-9.034 c0.087-0.536,0.195-1.064,0.289-1.598c0.499-2.819,1.085-5.609,1.776-8.361c0.082-0.327,0.148-0.66,0.233-0.986 c0.761-2.923,1.656-5.796,2.634-8.634c0.206-0.599,0.417-1.195,0.632-1.79c1.023-2.819,2.129-5.602,3.365-8.327 c0.144-0.318,0.306-0.627,0.453-0.943c1.19-2.563,2.482-5.076,3.86-7.548c0.239-0.428,0.463-0.86,0.707-1.285 c1.488-2.591,3.089-5.122,4.784-7.602c0.333-0.488,0.678-0.968,1.019-1.451c3.575-5.063,7.585-9.878,12.02-14.416 c0.401-0.41,0.794-0.822,1.201-1.227c1.182-1.175,2.402-2.325,3.641-3.46c0,0,0,0,0,0l0,0c1.072-0.982,2.151-1.959,3.265-2.91 c0.386-0.33,0.787-0.647,1.178-0.972c2.378-1.981,4.837-3.902,7.404-5.742c0.195-0.14,0.379-0.288,0.575-0.427 c2.69-1.906,5.506-3.713,8.399-5.458c0.536-0.323,1.074-0.645,1.616-0.962c2.922-1.708,5.923-3.348,9.044-4.886 c0.31-0.153,0.633-0.292,0.945-0.444c3.002-1.454,6.099-2.821,9.28-4.111c0.45-0.182,0.888-0.375,1.341-0.554 c3.333-1.316,6.771-2.53,10.295-3.66c0.636-0.204,1.279-0.399,1.921-0.596c3.647-1.123,7.363-2.174,11.208-3.091c0,0,0,0,0,0l0,0 c15.474-3.69,32.534-5.682,51.104-5.682c99.568,0,1041.475,0,1046.943,0v-34.406h-192.1H638.092z" }))));
|
|
101
|
+
exports.default = SVGComponent;
|
|
@@ -0,0 +1,83 @@
|
|
|
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
|
+
const config_1 = require("@/config");
|
|
37
|
+
const React = __importStar(require("react"));
|
|
38
|
+
const SVGComponent = (props) => (React.createElement("svg", { viewBox: "0 0 1600 896", xmlns: "http://www.w3.org/2000/svg", height: "24px", ...props },
|
|
39
|
+
React.createElement("defs", null,
|
|
40
|
+
React.createElement("style", null,
|
|
41
|
+
`.codecanon-letter { fill: var(--color-codecanon-letter, var(--color-codecanon-primary, ${config_1.LETTER_DEFAULT_COLOR})); }`,
|
|
42
|
+
`.codecanon-diacritic { fill: var(--color-codecanon-diacritic, var(--color-codecanon-secondary, ${config_1.DIACRITIC_DEFAULT_COLOR})); }`)),
|
|
43
|
+
React.createElement("rect", { className: "codecanon-letter", width: 148.6, height: 36, x: 89.6, y: 338 }),
|
|
44
|
+
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 223, x: 89.6, y: 338 }),
|
|
45
|
+
React.createElement("rect", { className: "codecanon-letter", width: 148.6, height: 36, x: 89.6, y: 525.1 }),
|
|
46
|
+
React.createElement("rect", { className: "codecanon-letter", width: 148.6, height: 36, x: 254.3, y: 393.5 }),
|
|
47
|
+
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 167.5, x: 254.3, y: 393.5 }),
|
|
48
|
+
React.createElement("rect", { className: "codecanon-letter", width: 147.3, height: 39.1, x: 255.7, y: 522 }),
|
|
49
|
+
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 167.5, x: 365.8, y: 393.5 }),
|
|
50
|
+
React.createElement("rect", { className: "codecanon-diacritic", width: 42.3, height: 39.8, x: 275.6, y: 343.8 }),
|
|
51
|
+
React.createElement("rect", { className: "codecanon-diacritic", width: 42.3, height: 39.8, x: 339.5, y: 343.8 }),
|
|
52
|
+
React.createElement("rect", { className: "codecanon-letter", width: 147.8, height: 36, x: 419.3, y: 393.5 }),
|
|
53
|
+
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 167.5, x: 419.3, y: 393.5 }),
|
|
54
|
+
React.createElement("rect", { className: "codecanon-letter", width: 146.4, height: 39.1, x: 420.7, y: 522 }),
|
|
55
|
+
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 225.3, x: 530, y: 335.8 }),
|
|
56
|
+
React.createElement("rect", { className: "codecanon-letter", width: 119.7, height: 29.9, x: 583.1, y: 393.5 }),
|
|
57
|
+
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 167.5, x: 583.1, y: 393.5 }),
|
|
58
|
+
React.createElement("rect", { className: "codecanon-letter", width: 119.7, height: 36, x: 583.1, y: 525.1 }),
|
|
59
|
+
React.createElement("rect", { className: "codecanon-letter", width: 119.7, height: 29.9, x: 583.1, y: 464.6 }),
|
|
60
|
+
React.createElement("rect", { className: "codecanon-letter", width: 36.4, height: 98, x: 666.5, y: 395.8 }),
|
|
61
|
+
React.createElement("rect", { className: "codecanon-diacritic", width: 42.3, height: 39.8, x: 621.9, y: 343.8 }),
|
|
62
|
+
React.createElement("rect", { className: "codecanon-letter", width: 148.6, height: 36, x: 719.2, y: 338 }),
|
|
63
|
+
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 223, x: 719.1, y: 338 }),
|
|
64
|
+
React.createElement("rect", { className: "codecanon-letter", width: 148.6, height: 36, x: 719.2, y: 525.1 }),
|
|
65
|
+
React.createElement("rect", { className: "codecanon-letter", width: 148.2, height: 33.4, x: 885.3, y: 397 }),
|
|
66
|
+
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 160.7, x: 996.4, y: 397 }),
|
|
67
|
+
React.createElement("rect", { className: "codecanon-letter", width: 147.8, height: 33.4, x: 885.7, y: 527.6 }),
|
|
68
|
+
React.createElement("rect", { className: "codecanon-letter", width: 35.4, height: 109.8, x: 883.9, y: 451.3 }),
|
|
69
|
+
React.createElement("rect", { className: "codecanon-letter", width: 148.2, height: 33.4, x: 885.3, y: 451.3 }),
|
|
70
|
+
React.createElement("rect", { className: "codecanon-diacritic", width: 112.9, height: 24.8, x: 902.3, y: 351.3 }),
|
|
71
|
+
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 167.5, x: 1049.5, y: 393.5 }),
|
|
72
|
+
React.createElement("rect", { className: "codecanon-letter", width: 148.6, height: 36, x: 1049.5, y: 393.5 }),
|
|
73
|
+
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 167.5, x: 1161, y: 393.5 }),
|
|
74
|
+
React.createElement("rect", { className: "codecanon-letter", width: 148.6, height: 36, x: 1214.1, y: 393.5 }),
|
|
75
|
+
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 167.5, x: 1214.1, y: 393.5 }),
|
|
76
|
+
React.createElement("rect", { className: "codecanon-letter", width: 147.3, height: 39.1, x: 1215.5, y: 522 }),
|
|
77
|
+
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 167.5, x: 1325.6, y: 393.5 }),
|
|
78
|
+
React.createElement("rect", { className: "codecanon-diacritic", width: 42.3, height: 39.8, x: 1235.4, y: 343.8 }),
|
|
79
|
+
React.createElement("rect", { className: "codecanon-diacritic", width: 42.3, height: 39.8, x: 1299.3, y: 343.8 }),
|
|
80
|
+
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 167.5, x: 1378.8, y: 393.5 }),
|
|
81
|
+
React.createElement("rect", { className: "codecanon-letter", width: 148.6, height: 36, x: 1378.8, y: 393.5 }),
|
|
82
|
+
React.createElement("rect", { className: "codecanon-letter", width: 37.2, height: 167.5, x: 1490.2, y: 393.5 })));
|
|
83
|
+
exports.default = SVGComponent;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecanon/logos",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "CodeCanon logo assets in SVG and PNG formats",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"codecanon",
|
|
@@ -28,10 +28,6 @@
|
|
|
28
28
|
"png",
|
|
29
29
|
"README.md"
|
|
30
30
|
],
|
|
31
|
-
"scripts": {
|
|
32
|
-
"build": "tsc",
|
|
33
|
-
"prepublishOnly": "pnpm run build"
|
|
34
|
-
},
|
|
35
31
|
"devDependencies": {
|
|
36
32
|
"typescript": "^5.3.3",
|
|
37
33
|
"@types/node": "^20.11.0",
|
|
@@ -44,5 +40,8 @@
|
|
|
44
40
|
"react": {
|
|
45
41
|
"optional": true
|
|
46
42
|
}
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsc"
|
|
47
46
|
}
|
|
48
|
-
}
|
|
47
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|