@inglorious/logo 2.0.11 → 2.0.13
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/LICENSE +9 -9
- package/README.md +71 -71
- package/package.json +4 -4
- package/src/assets/eye.svg +36 -36
- package/src/assets/faces/A.svg +30 -30
- package/src/assets/faces/B.svg +35 -35
- package/src/assets/faces/C.svg +26 -26
- package/src/assets/faces/D.svg +28 -28
- package/src/assets/faces/E.svg +30 -30
- package/src/assets/faces/F.svg +28 -28
- package/src/assets/faces/G.svg +28 -28
- package/src/assets/faces/H.svg +28 -28
- package/src/assets/faces/I.svg +24 -24
- package/src/assets/faces/J.svg +26 -26
- package/src/assets/faces/K.svg +27 -27
- package/src/assets/faces/L.svg +24 -24
- package/src/assets/faces/M.svg +28 -28
- package/src/assets/faces/N.svg +26 -26
- package/src/assets/faces/O.svg +26 -26
- package/src/assets/faces/P.svg +30 -30
- package/src/assets/faces/Q.svg +33 -33
- package/src/assets/faces/R.svg +32 -32
- package/src/assets/faces/S.svg +30 -30
- package/src/assets/faces/T.svg +26 -26
- package/src/assets/faces/U.svg +24 -24
- package/src/assets/faces/V.svg +23 -23
- package/src/assets/faces/W.svg +28 -28
- package/src/assets/faces/X.svg +28 -28
- package/src/assets/faces/Y.svg +25 -25
- package/src/assets/faces/Z.svg +28 -28
- package/src/style.css +44 -44
package/LICENSE
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Copyright © 2025 Inglorious Coderz Srl.
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
-
|
|
7
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
-
|
|
9
|
-
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright © 2025 Inglorious Coderz Srl.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,71 +1,71 @@
|
|
|
1
|
-
# @inglorious/logo
|
|
2
|
-
|
|
3
|
-
The Inglorious Logo component — a small, dependency-light package that provides the 3D logo render and interactive handlers for Inglorious Web.
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
## Install
|
|
8
|
-
|
|
9
|
-
Add the package to your project:
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
pnpm add @inglorious/logo
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
---
|
|
16
|
-
|
|
17
|
-
## Usage
|
|
18
|
-
|
|
19
|
-
Import the package and its stylesheet, and (optionally) the types for TypeScript.
|
|
20
|
-
|
|
21
|
-
Then, register the `logo` type in your store, create an entity of that type, and use `api.render(entityId)` inside your templates (see the [`web-logo`](https://github.com/IngloriousCoderz/inglorious-forge/tree/main/examples/apps/web-logo) demo app).
|
|
22
|
-
|
|
23
|
-
```js
|
|
24
|
-
import { createStore } from "@inglorious/web"
|
|
25
|
-
import { logo } from "@inglorious/logo"
|
|
26
|
-
import "@inglorious/logo/style.css"
|
|
27
|
-
|
|
28
|
-
const entities = {
|
|
29
|
-
logo: {
|
|
30
|
-
type: "logo",
|
|
31
|
-
size: 256,
|
|
32
|
-
faces: [
|
|
33
|
-
{ image: "I", reverse: false, eye: true },
|
|
34
|
-
{ image: "W", reverse: false, eye: false },
|
|
35
|
-
],
|
|
36
|
-
isInteractive: false,
|
|
37
|
-
isScrollPrevented: true,
|
|
38
|
-
},
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
const store = createStore({
|
|
42
|
-
types: { logo },
|
|
43
|
-
entities,
|
|
44
|
-
})
|
|
45
|
-
|
|
46
|
-
// app render function receives `api` from mount()
|
|
47
|
-
const app = {
|
|
48
|
-
render(api) {
|
|
49
|
-
return api.render("logo")
|
|
50
|
-
},
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
// TypeScript: import the entity type if you want to annotate entity shapes
|
|
54
|
-
// import type { LogoEntity } from "@inglorious/logo"
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
---
|
|
58
|
-
|
|
59
|
-
## License
|
|
60
|
-
|
|
61
|
-
**MIT License - Free and open source**
|
|
62
|
-
|
|
63
|
-
Created by [Matteo Antony Mistretta](https://github.com/IngloriousCoderz)
|
|
64
|
-
|
|
65
|
-
You're free to use, modify, and distribute this software. See [LICENSE](./LICENSE) for details.
|
|
66
|
-
|
|
67
|
-
---
|
|
68
|
-
|
|
69
|
-
## Contributing
|
|
70
|
-
|
|
71
|
-
Contributions welcome! Please read our [Contributing Guidelines](../../CONTRIBUTING.md) first.
|
|
1
|
+
# @inglorious/logo
|
|
2
|
+
|
|
3
|
+
The Inglorious Logo component — a small, dependency-light package that provides the 3D logo render and interactive handlers for Inglorious Web.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
Add the package to your project:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pnpm add @inglorious/logo
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
Import the package and its stylesheet, and (optionally) the types for TypeScript.
|
|
20
|
+
|
|
21
|
+
Then, register the `logo` type in your store, create an entity of that type, and use `api.render(entityId)` inside your templates (see the [`web-logo`](https://github.com/IngloriousCoderz/inglorious-forge/tree/main/examples/apps/web-logo) demo app).
|
|
22
|
+
|
|
23
|
+
```js
|
|
24
|
+
import { createStore } from "@inglorious/web"
|
|
25
|
+
import { logo } from "@inglorious/logo"
|
|
26
|
+
import "@inglorious/logo/style.css"
|
|
27
|
+
|
|
28
|
+
const entities = {
|
|
29
|
+
logo: {
|
|
30
|
+
type: "logo",
|
|
31
|
+
size: 256,
|
|
32
|
+
faces: [
|
|
33
|
+
{ image: "I", reverse: false, eye: true },
|
|
34
|
+
{ image: "W", reverse: false, eye: false },
|
|
35
|
+
],
|
|
36
|
+
isInteractive: false,
|
|
37
|
+
isScrollPrevented: true,
|
|
38
|
+
},
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const store = createStore({
|
|
42
|
+
types: { logo },
|
|
43
|
+
entities,
|
|
44
|
+
})
|
|
45
|
+
|
|
46
|
+
// app render function receives `api` from mount()
|
|
47
|
+
const app = {
|
|
48
|
+
render(api) {
|
|
49
|
+
return api.render("logo")
|
|
50
|
+
},
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// TypeScript: import the entity type if you want to annotate entity shapes
|
|
54
|
+
// import type { LogoEntity } from "@inglorious/logo"
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## License
|
|
60
|
+
|
|
61
|
+
**MIT License - Free and open source**
|
|
62
|
+
|
|
63
|
+
Created by [Matteo Antony Mistretta](https://github.com/IngloriousCoderz)
|
|
64
|
+
|
|
65
|
+
You're free to use, modify, and distribute this software. See [LICENSE](./LICENSE) for details.
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## Contributing
|
|
70
|
+
|
|
71
|
+
Contributions welcome! Please read our [Contributing Guidelines](../../CONTRIBUTING.md) first.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inglorious/logo",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.13",
|
|
4
4
|
"description": "The Inglorious Coderz logo, remade to be compatible with Inglorious Web.",
|
|
5
5
|
"author": "IceOnFire <antony.mistretta@gmail.com> (https://ingloriouscoderz.it)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@inglorious/web": "4.0.
|
|
44
|
+
"@inglorious/web": "4.0.6"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"prettier": "^3.6.2",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
},
|
|
54
54
|
"types": "types/index.d.ts",
|
|
55
55
|
"scripts": {
|
|
56
|
-
"format": "prettier --write
|
|
57
|
-
"lint": "eslint .
|
|
56
|
+
"format": "prettier --write .",
|
|
57
|
+
"lint": "eslint .",
|
|
58
58
|
"test:watch": "vitest",
|
|
59
59
|
"test": "vitest run"
|
|
60
60
|
}
|
package/src/assets/eye.svg
CHANGED
|
@@ -1,36 +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>
|
|
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>
|
package/src/assets/faces/A.svg
CHANGED
|
@@ -1,30 +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>
|
|
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>
|
package/src/assets/faces/B.svg
CHANGED
|
@@ -1,35 +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>
|
|
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>
|
package/src/assets/faces/C.svg
CHANGED
|
@@ -1,26 +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>
|
|
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>
|
package/src/assets/faces/D.svg
CHANGED
|
@@ -1,28 +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>
|
|
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>
|
package/src/assets/faces/E.svg
CHANGED
|
@@ -1,30 +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>
|
|
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>
|
package/src/assets/faces/F.svg
CHANGED
|
@@ -1,28 +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>
|
|
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>
|