@inglorious/logo 1.0.0

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.
Files changed (71) hide show
  1. package/.babelrc +6 -0
  2. package/.eslintrc.cjs +33 -0
  3. package/.storybook/main.js +18 -0
  4. package/.storybook/preview.js +14 -0
  5. package/LICENSE.md +1 -0
  6. package/dist/eye.svg +36 -0
  7. package/dist/faces/A.svg +30 -0
  8. package/dist/faces/B.svg +35 -0
  9. package/dist/faces/C.svg +26 -0
  10. package/dist/faces/D.svg +28 -0
  11. package/dist/faces/E.svg +30 -0
  12. package/dist/faces/F.svg +28 -0
  13. package/dist/faces/G.svg +28 -0
  14. package/dist/faces/H.svg +28 -0
  15. package/dist/faces/I.svg +24 -0
  16. package/dist/faces/J.svg +26 -0
  17. package/dist/faces/K.svg +27 -0
  18. package/dist/faces/L.svg +24 -0
  19. package/dist/faces/M.svg +28 -0
  20. package/dist/faces/N.svg +26 -0
  21. package/dist/faces/O.svg +26 -0
  22. package/dist/faces/P.svg +30 -0
  23. package/dist/faces/Q.svg +33 -0
  24. package/dist/faces/R.svg +32 -0
  25. package/dist/faces/S.svg +30 -0
  26. package/dist/faces/T.svg +26 -0
  27. package/dist/faces/U.svg +24 -0
  28. package/dist/faces/V.svg +23 -0
  29. package/dist/faces/W.svg +28 -0
  30. package/dist/faces/X.svg +28 -0
  31. package/dist/faces/Y.svg +25 -0
  32. package/dist/faces/Z.svg +28 -0
  33. package/dist/faces/index.js +188 -0
  34. package/dist/index.js +138 -0
  35. package/dist/logo.js +95 -0
  36. package/dist/logo.module.css +43 -0
  37. package/dist/logo.stories.js +56 -0
  38. package/package.json +51 -0
  39. package/src/eye.svg +36 -0
  40. package/src/faces/A.svg +30 -0
  41. package/src/faces/B.svg +35 -0
  42. package/src/faces/C.svg +26 -0
  43. package/src/faces/D.svg +28 -0
  44. package/src/faces/E.svg +30 -0
  45. package/src/faces/F.svg +28 -0
  46. package/src/faces/G.svg +28 -0
  47. package/src/faces/H.svg +28 -0
  48. package/src/faces/I.svg +24 -0
  49. package/src/faces/J.svg +26 -0
  50. package/src/faces/K.svg +27 -0
  51. package/src/faces/L.svg +24 -0
  52. package/src/faces/M.svg +28 -0
  53. package/src/faces/N.svg +26 -0
  54. package/src/faces/O.svg +26 -0
  55. package/src/faces/P.svg +30 -0
  56. package/src/faces/Q.svg +33 -0
  57. package/src/faces/R.svg +32 -0
  58. package/src/faces/S.svg +30 -0
  59. package/src/faces/T.svg +26 -0
  60. package/src/faces/U.svg +24 -0
  61. package/src/faces/V.svg +23 -0
  62. package/src/faces/W.svg +28 -0
  63. package/src/faces/X.svg +28 -0
  64. package/src/faces/Y.svg +25 -0
  65. package/src/faces/Z.svg +28 -0
  66. package/src/faces/index.js +55 -0
  67. package/src/index.jsx +148 -0
  68. package/src/logo.jsx +101 -0
  69. package/src/logo.module.css +43 -0
  70. package/src/logo.stories.jsx +38 -0
  71. package/vite.config.js +8 -0
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = exports.Interactive = exports.IngloriousEngine = exports.Default = exports.Big = void 0;
7
+ var _ = _interopRequireDefault(require("."));
8
+ var _jsxRuntime = require("react/jsx-runtime");
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
10
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
11
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
12
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
13
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
14
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
15
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
16
+ var _default = exports["default"] = {
17
+ title: "Inglorious Logo",
18
+ component: _["default"]
19
+ };
20
+ var Default = exports.Default = {
21
+ args: {}
22
+ };
23
+ var Big = exports.Big = {
24
+ args: {
25
+ size: 320
26
+ }
27
+ };
28
+ var Interactive = exports.Interactive = {
29
+ args: _objectSpread(_objectSpread({}, Big.args), {}, {
30
+ isInteractive: true
31
+ })
32
+ };
33
+ var IngloriousEngine = exports.IngloriousEngine = {
34
+ decorators: [function (Story) {
35
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
36
+ style: {
37
+ background: "black",
38
+ width: 320,
39
+ height: 240,
40
+ display: "flex",
41
+ justifyContent: "center",
42
+ alignItems: "center"
43
+ },
44
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(Story, {})
45
+ });
46
+ }],
47
+ args: {
48
+ size: 128,
49
+ faces: [{
50
+ image: "I",
51
+ eye: true
52
+ }, {
53
+ image: "E"
54
+ }]
55
+ }
56
+ };
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@inglorious/logo",
3
+ "version": "1.0.0",
4
+ "private": false,
5
+ "license": "SEE LICENSE IN LICENSE.md",
6
+ "author": "Matteo Antony Mistretta <antony.mistretta@gmail.com> (https://www.ingloriouscoderz.it)",
7
+ "main": "dist/index.js",
8
+ "module": "dist/index.js",
9
+ "source": "src/index.jsx",
10
+ "dependencies": {
11
+ "react": "^18.2.0",
12
+ "react-dom": "^18.2.0"
13
+ },
14
+ "peerDependencies": {
15
+ "react": "^18.2.0",
16
+ "react-dom": "^18.2.0"
17
+ },
18
+ "devDependencies": {
19
+ "@babel/cli": "^7.23.0",
20
+ "@babel/preset-env": "^7.23.2",
21
+ "@babel/preset-react": "^7.22.15",
22
+ "@storybook/addon-essentials": "7.4.6",
23
+ "@storybook/addon-interactions": "7.4.6",
24
+ "@storybook/addon-links": "7.4.6",
25
+ "@storybook/addon-onboarding": "1.0.8",
26
+ "@storybook/blocks": "7.4.6",
27
+ "@storybook/react": "7.4.6",
28
+ "@storybook/react-vite": "7.4.6",
29
+ "@storybook/testing-library": "0.2.2",
30
+ "babel-loader": "^9.1.3",
31
+ "eslint": "^8.51.0",
32
+ "eslint-plugin-react": "^7.33.2",
33
+ "eslint-plugin-react-hooks": "^4.6.0",
34
+ "eslint-plugin-react-refresh": "^0.4.3",
35
+ "eslint-plugin-simple-import-sort": "^10.0.0",
36
+ "prop-types": "15.8.1",
37
+ "rimraf": "^5.0.5",
38
+ "storybook": "7.4.6",
39
+ "vite-plugin-svgr": "^4.1.0",
40
+ "vitest": "^0.34.6"
41
+ },
42
+ "scripts": {
43
+ "lint": "eslint src --fix --ext .js,.jsx",
44
+ "test": "vitest",
45
+ "coverage": "vitest run --coverage",
46
+ "storybook": "storybook dev -p 6006",
47
+ "build-storybook": "storybook build",
48
+ "build": "babel src -d dist --copy-files",
49
+ "prepublish": "rimraf dist && npm run build"
50
+ }
51
+ }
package/src/eye.svg ADDED
@@ -0,0 +1,36 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #eyelid {
5
+ fill: rgb(0, 192, 192);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 127);
8
+ stroke-width: 0;
9
+ }
10
+
11
+ #eye {
12
+ fill: rgb(0, 255, 255);
13
+ fill-opacity: 0.5;
14
+ stroke: rgb(0, 192, 192);
15
+ stroke-width: 0;
16
+ }
17
+ </style>
18
+
19
+ <path id="eyelid" d="
20
+ M 0 0
21
+ L 1 0
22
+ L 2.5 0.75
23
+ L 4.5 0.75
24
+ L 4 1
25
+ L 2 1
26
+ Z
27
+ " />
28
+
29
+ <path id="eye" d="
30
+ M 1 0
31
+ L 6 0
32
+ L 4.5 0.75
33
+ L 2.5 0.75
34
+ Z
35
+ " />
36
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 6 0
16
+ L 6 6
17
+ L 4 6
18
+ L 4 4
19
+ L 2 4
20
+ L 2 6
21
+ L 0 6
22
+ Z
23
+
24
+ M 2 1
25
+ L 2 3
26
+ L 4 3
27
+ L 4 1
28
+ Z
29
+ " />
30
+ </svg>
@@ -0,0 +1,35 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 6 0
16
+ L 6 1
17
+ L 5 2
18
+ L 6 2
19
+ L 6 6
20
+ L 0 6
21
+ Z
22
+
23
+ M 2 1
24
+ L 2 2
25
+ L 4 2
26
+ L 4 1
27
+ Z
28
+
29
+ M 2 3
30
+ L 2 5
31
+ L 4 5
32
+ L 4 3
33
+ Z
34
+ " />
35
+ </svg>
@@ -0,0 +1,26 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 6 0
16
+ L 6 2
17
+ L 4 1
18
+ L 2 1
19
+ L 2 5
20
+ L 4 5
21
+ L 6 4
22
+ L 6 6
23
+ L 0 6
24
+ Z
25
+ " />
26
+ </svg>
@@ -0,0 +1,28 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 6 0
16
+ L 6 4
17
+ L 4 6
18
+ L 0 6
19
+ Z
20
+
21
+ M 2 1
22
+ L 2 5
23
+ L 3 5
24
+ L 4 4
25
+ L 4 1
26
+ Z
27
+ " />
28
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 6 0
16
+ L 6 2
17
+ L 4 1
18
+ L 2 1
19
+ L 2 2
20
+ L 4 2
21
+ L 3 3
22
+ L 2 3
23
+ L 2 5
24
+ L 4 5
25
+ L 6 4
26
+ L 6 6
27
+ L 0 6
28
+ Z
29
+ " />
30
+ </svg>
@@ -0,0 +1,28 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 6 0
16
+ L 6 2
17
+ L 4 1
18
+ L 2 1
19
+ L 2 2
20
+ L 4 2
21
+ L 3 3
22
+ L 2 3
23
+ L 2 5
24
+ L 4 6
25
+ L 0 6
26
+ Z
27
+ " />
28
+ </svg>
@@ -0,0 +1,28 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 6 0
16
+ L 6 2
17
+ L 4 1
18
+ L 2 1
19
+ L 2 5
20
+ L 4 5
21
+ L 4 4
22
+ L 3 3
23
+ L 6 3
24
+ L 6 6
25
+ L 0 6
26
+ Z
27
+ " />
28
+ </svg>
@@ -0,0 +1,28 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 2 0
16
+ L 2 2
17
+ L 4 2
18
+ L 4 0
19
+ L 6 0
20
+ L 6 6
21
+ L 4 6
22
+ L 4 4
23
+ L 2 4
24
+ L 2 6
25
+ L 0 6
26
+ Z
27
+ " />
28
+ </svg>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 6 0
16
+ L 4 1
17
+ L 4 5
18
+ L 6 6
19
+ L 0 6
20
+ L 2 5
21
+ L 2 1
22
+ Z
23
+ " />
24
+ </svg>
@@ -0,0 +1,26 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 3 0
15
+ L 6 0
16
+ L 6 6
17
+ L 0 6
18
+ L 0 3
19
+ L 3 3
20
+ L 2 4
21
+ L 2 5
22
+ L 4 5
23
+ L 4 1
24
+ Z
25
+ " />
26
+ </svg>
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 2 0
16
+ L 2 2
17
+ L 4 0
18
+ L 6 0
19
+ L 3 3
20
+ L 6 6
21
+ L 4 6
22
+ L 2 4
23
+ L 2 6
24
+ L 0 6
25
+ Z
26
+ " />
27
+ </svg>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 3 0
16
+ L 2 1
17
+ L 2 5
18
+ L 5 5
19
+ L 6 4
20
+ L 6 6
21
+ L 0 6
22
+ Z
23
+ " />
24
+ </svg>
@@ -0,0 +1,28 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 2 0
16
+ L 3 2
17
+ L 4 0
18
+ L 6 0
19
+ L 6 6
20
+ L 4 6
21
+ L 4 3
22
+ L 3 5
23
+ L 2 3
24
+ L 2 6
25
+ L 0 6
26
+ Z
27
+ " />
28
+ </svg>
@@ -0,0 +1,26 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 2 0
16
+ L 4 3
17
+ L 4 0
18
+ L 6 0
19
+ L 6 6
20
+ L 4 6
21
+ L 2 3
22
+ L 2 6
23
+ L 0 6
24
+ Z
25
+ " />
26
+ </svg>
@@ -0,0 +1,26 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 6 0
16
+ L 6 6
17
+ L 0 6
18
+ Z
19
+
20
+ M 2 1
21
+ L 2 5
22
+ L 4 5
23
+ L 4 1
24
+ Z
25
+ " />
26
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 6 0
16
+ L 6 2
17
+ L 4 4
18
+ L 2 4
19
+ L 2 6
20
+ L 0 6
21
+ Z
22
+
23
+ M 2 1
24
+ L 2 3
25
+ L 3 3
26
+ L 4 2
27
+ L 4 1
28
+ Z
29
+ " />
30
+ </svg>
@@ -0,0 +1,33 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 6 0
16
+ L 6 3
17
+ L 5 4
18
+ L 6 5
19
+ L 6 6
20
+ L 5 6
21
+ L 4 5
22
+ L 3 6
23
+ L 0 6
24
+ Z
25
+
26
+ M 2 1
27
+ L 2 4
28
+ L 3 4
29
+ L 4 3
30
+ L 4 1
31
+ Z
32
+ " />
33
+ </svg>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 6 6">
3
+ <style>
4
+ #letter {
5
+ fill: rgb(127, 127, 255);
6
+ fill-opacity: 0.5;
7
+ stroke: rgb(127, 127, 192);
8
+ stroke-width: 0.25;
9
+ stroke-opacity: 0.5;
10
+ }
11
+ </style>
12
+
13
+ <path id="letter" d="
14
+ M 0 0
15
+ L 6 0
16
+ L 6 2
17
+ L 4 4
18
+ L 6 6
19
+ L 4 6
20
+ L 2 4
21
+ L 2 6
22
+ L 0 6
23
+ Z
24
+
25
+ M 2 1
26
+ L 2 3
27
+ L 3 3
28
+ L 4 2
29
+ L 4 1
30
+ Z
31
+ " />
32
+ </svg>