@tinfoilsh/tinfoil-icons 0.0.1 → 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.
- package/README.md +93 -45
- package/dist/IconBase.d.ts +6 -0
- package/dist/IconBase.d.ts.map +1 -0
- package/dist/icons/Brain.d.ts +4 -0
- package/dist/icons/Brain.d.ts.map +1 -0
- package/dist/icons/Cert.d.ts +4 -0
- package/dist/icons/Cert.d.ts.map +1 -0
- package/dist/icons/Cloud.d.ts +4 -0
- package/dist/icons/Cloud.d.ts.map +1 -0
- package/dist/icons/CpuCheck.d.ts +4 -0
- package/dist/icons/CpuCheck.d.ts.map +1 -0
- package/dist/icons/Database.d.ts +4 -0
- package/dist/icons/Database.d.ts.map +1 -0
- package/dist/icons/Github.d.ts +4 -0
- package/dist/icons/Github.d.ts.map +1 -0
- package/dist/icons/Gpu.d.ts +4 -0
- package/dist/icons/Gpu.d.ts.map +1 -0
- package/dist/icons/GpuFan.d.ts +4 -0
- package/dist/icons/GpuFan.d.ts.map +1 -0
- package/dist/icons/GpuNoFan.d.ts +4 -0
- package/dist/icons/GpuNoFan.d.ts.map +1 -0
- package/dist/icons/Key.d.ts +4 -0
- package/dist/icons/Key.d.ts.map +1 -0
- package/dist/icons/Lock.d.ts +4 -0
- package/dist/icons/Lock.d.ts.map +1 -0
- package/dist/icons/Monitor.d.ts +4 -0
- package/dist/icons/Monitor.d.ts.map +1 -0
- package/dist/icons/Robot.d.ts +4 -0
- package/dist/icons/Robot.d.ts.map +1 -0
- package/dist/icons/Server.d.ts +4 -0
- package/dist/icons/Server.d.ts.map +1 -0
- package/dist/icons/ShieldCheck.d.ts +4 -0
- package/dist/icons/ShieldCheck.d.ts.map +1 -0
- package/dist/icons/ShieldX.d.ts +4 -0
- package/dist/icons/ShieldX.d.ts.map +1 -0
- package/dist/icons/Sigstore.d.ts +4 -0
- package/dist/icons/Sigstore.d.ts.map +1 -0
- package/dist/icons/Stars.d.ts +4 -0
- package/dist/icons/Stars.d.ts.map +1 -0
- package/dist/icons/Terminal.d.ts +4 -0
- package/dist/icons/Terminal.d.ts.map +1 -0
- package/dist/icons/Tin.d.ts +4 -0
- package/dist/icons/Tin.d.ts.map +1 -0
- package/dist/icons/TinSad.d.ts +4 -0
- package/dist/icons/TinSad.d.ts.map +1 -0
- package/dist/icons/Unlock.d.ts +4 -0
- package/dist/icons/Unlock.d.ts.map +1 -0
- package/dist/icons/Warning.d.ts +4 -0
- package/dist/icons/Warning.d.ts.map +1 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.esm.js +498 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +522 -0
- package/dist/index.js.map +1 -0
- package/dist/types.d.ts +8 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +32 -6
package/README.md
CHANGED
|
@@ -1,45 +1,93 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
##
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
1
|
+
# Tinfoil Icons
|
|
2
|
+
|
|
3
|
+
Custom icon library for Tinfoil projects, compatible with react-icons.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @tinfoilsh/tinfoil-icons
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
Import icons the same way you would with react-icons:
|
|
14
|
+
|
|
15
|
+
```tsx
|
|
16
|
+
import { TfBrain, TfTin, TfKey } from '@tinfoilsh/tinfoil-icons';
|
|
17
|
+
|
|
18
|
+
function App() {
|
|
19
|
+
return (
|
|
20
|
+
<div>
|
|
21
|
+
<TfBrain size={24} color="#005050" />
|
|
22
|
+
<TfTin size="2em" className="text-teal" />
|
|
23
|
+
<TfKey size={32} />
|
|
24
|
+
</div>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Props
|
|
30
|
+
|
|
31
|
+
All icons accept the same props as react-icons:
|
|
32
|
+
|
|
33
|
+
- `size?: string | number` - Icon size (default: '1em')
|
|
34
|
+
- `color?: string` - Icon color (default: 'currentColor')
|
|
35
|
+
- `className?: string` - CSS class name
|
|
36
|
+
- `style?: CSSProperties` - Inline styles
|
|
37
|
+
- All other SVG attributes
|
|
38
|
+
|
|
39
|
+
## Available Icons
|
|
40
|
+
|
|
41
|
+
- `TfBrain`
|
|
42
|
+
- `TfCert`
|
|
43
|
+
- `TfCloud`
|
|
44
|
+
- `TfCpuCheck`
|
|
45
|
+
- `TfDatabase`
|
|
46
|
+
- `TfGithub`
|
|
47
|
+
- `TfGpuFan`
|
|
48
|
+
- `TfGpuNoFan`
|
|
49
|
+
- `TfGpu`
|
|
50
|
+
- `TfKey`
|
|
51
|
+
- `TfLock`
|
|
52
|
+
- `TfMonitor`
|
|
53
|
+
- `TfRobot`
|
|
54
|
+
- `TfServer`
|
|
55
|
+
- `TfShieldCheck`
|
|
56
|
+
- `TfShieldX`
|
|
57
|
+
- `TfSigstore`
|
|
58
|
+
- `TfStars`
|
|
59
|
+
- `TfTerminal`
|
|
60
|
+
- `TfTinSad`
|
|
61
|
+
- `TfTin`
|
|
62
|
+
- `TfUnlock`
|
|
63
|
+
- `TfWarning`
|
|
64
|
+
|
|
65
|
+
## Development
|
|
66
|
+
|
|
67
|
+
### Adding or Updating Icons
|
|
68
|
+
|
|
69
|
+
1. Add or update SVG files in the `svg/` directory
|
|
70
|
+
2. Regenerate components from SVGs:
|
|
71
|
+
```bash
|
|
72
|
+
npm run sync # Regenerates .tsx files from .svg files
|
|
73
|
+
npm run build # Build the package
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
The pre-commit hook automatically syncs (regenerates `.tsx` from `.svg`) and rebuilds before every commit.
|
|
77
|
+
|
|
78
|
+
### Publishing
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
npm version patch # or minor/major
|
|
82
|
+
npm publish
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### Icon Generation
|
|
86
|
+
|
|
87
|
+
When you modify SVG files in `svg/`, run:
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
npm run sync
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
This regenerates all `.tsx` icon components from the SVG source files.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconBase.d.ts","sourceRoot":"","sources":["../src/IconBase.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAExC,wBAAgB,QAAQ,CAAC,EACvB,IAAY,EACZ,KAAsB,EACtB,KAAK,EACL,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,aAAa,GAAG;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,qBAe/C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Brain.d.ts","sourceRoot":"","sources":["../../src/icons/Brain.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,OAAO,CAAC,KAAK,EAAE,aAAa,qBA0B3C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Cert.d.ts","sourceRoot":"","sources":["../../src/icons/Cert.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,MAAM,CAAC,KAAK,EAAE,aAAa,qBAkB1C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Cloud.d.ts","sourceRoot":"","sources":["../../src/icons/Cloud.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,OAAO,CAAC,KAAK,EAAE,aAAa,qBAiB3C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CpuCheck.d.ts","sourceRoot":"","sources":["../../src/icons/CpuCheck.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,UAAU,CAAC,KAAK,EAAE,aAAa,qBA4B9C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Database.d.ts","sourceRoot":"","sources":["../../src/icons/Database.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,UAAU,CAAC,KAAK,EAAE,aAAa,qBA4B9C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Github.d.ts","sourceRoot":"","sources":["../../src/icons/Github.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,QAAQ,CAAC,KAAK,EAAE,aAAa,qBAe5C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Gpu.d.ts","sourceRoot":"","sources":["../../src/icons/Gpu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,KAAK,CAAC,KAAK,EAAE,aAAa,qBAWzC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GpuFan.d.ts","sourceRoot":"","sources":["../../src/icons/GpuFan.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,QAAQ,CAAC,KAAK,EAAE,aAAa,qBAM5C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GpuNoFan.d.ts","sourceRoot":"","sources":["../../src/icons/GpuNoFan.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,UAAU,CAAC,KAAK,EAAE,aAAa,qBAU9C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Key.d.ts","sourceRoot":"","sources":["../../src/icons/Key.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,KAAK,CAAC,KAAK,EAAE,aAAa,qBAUzC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Lock.d.ts","sourceRoot":"","sources":["../../src/icons/Lock.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,MAAM,CAAC,KAAK,EAAE,aAAa,qBAa1C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Monitor.d.ts","sourceRoot":"","sources":["../../src/icons/Monitor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,SAAS,CAAC,KAAK,EAAE,aAAa,qBAe7C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Robot.d.ts","sourceRoot":"","sources":["../../src/icons/Robot.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,OAAO,CAAC,KAAK,EAAE,aAAa,qBAoC3C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Server.d.ts","sourceRoot":"","sources":["../../src/icons/Server.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,QAAQ,CAAC,KAAK,EAAE,aAAa,qBAoB5C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ShieldCheck.d.ts","sourceRoot":"","sources":["../../src/icons/ShieldCheck.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,aAAa,CAAC,KAAK,EAAE,aAAa,qBA0BjD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ShieldX.d.ts","sourceRoot":"","sources":["../../src/icons/ShieldX.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,SAAS,CAAC,KAAK,EAAE,aAAa,qBA0B7C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Sigstore.d.ts","sourceRoot":"","sources":["../../src/icons/Sigstore.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,UAAU,CAAC,KAAK,EAAE,aAAa,qBAS9C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Stars.d.ts","sourceRoot":"","sources":["../../src/icons/Stars.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,OAAO,CAAC,KAAK,EAAE,aAAa,qBAyE3C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Terminal.d.ts","sourceRoot":"","sources":["../../src/icons/Terminal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,UAAU,CAAC,KAAK,EAAE,aAAa,qBAc9C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Tin.d.ts","sourceRoot":"","sources":["../../src/icons/Tin.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,KAAK,CAAC,KAAK,EAAE,aAAa,qBAiCzC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TinSad.d.ts","sourceRoot":"","sources":["../../src/icons/TinSad.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,QAAQ,CAAC,KAAK,EAAE,aAAa,qBAqC5C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Unlock.d.ts","sourceRoot":"","sources":["../../src/icons/Unlock.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,QAAQ,CAAC,KAAK,EAAE,aAAa,qBAa5C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Warning.d.ts","sourceRoot":"","sources":["../../src/icons/Warning.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,SAAS,CAAC,KAAK,EAAE,aAAa,qBAQ7C"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export type { IconBaseProps, IconType } from './types';
|
|
2
|
+
export { TfBrain } from './icons/Brain';
|
|
3
|
+
export { TfCert } from './icons/Cert';
|
|
4
|
+
export { TfCloud } from './icons/Cloud';
|
|
5
|
+
export { TfCpuCheck } from './icons/CpuCheck';
|
|
6
|
+
export { TfDatabase } from './icons/Database';
|
|
7
|
+
export { TfGithub } from './icons/Github';
|
|
8
|
+
export { TfGpuFan } from './icons/GpuFan';
|
|
9
|
+
export { TfGpuNoFan } from './icons/GpuNoFan';
|
|
10
|
+
export { TfGpu } from './icons/Gpu';
|
|
11
|
+
export { TfKey } from './icons/Key';
|
|
12
|
+
export { TfLock } from './icons/Lock';
|
|
13
|
+
export { TfMonitor } from './icons/Monitor';
|
|
14
|
+
export { TfRobot } from './icons/Robot';
|
|
15
|
+
export { TfServer } from './icons/Server';
|
|
16
|
+
export { TfShieldCheck } from './icons/ShieldCheck';
|
|
17
|
+
export { TfShieldX } from './icons/ShieldX';
|
|
18
|
+
export { TfSigstore } from './icons/Sigstore';
|
|
19
|
+
export { TfStars } from './icons/Stars';
|
|
20
|
+
export { TfTerminal } from './icons/Terminal';
|
|
21
|
+
export { TfTinSad } from './icons/TinSad';
|
|
22
|
+
export { TfTin } from './icons/Tin';
|
|
23
|
+
export { TfUnlock } from './icons/Unlock';
|
|
24
|
+
export { TfWarning } from './icons/Warning';
|
|
25
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAEvD,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AACtC,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AACtC,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC"}
|