@aziontech/icons 0.1.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/LICENSE +20 -0
- package/README.md +316 -0
- package/azionicons.css +276 -0
- package/azionicons.woff2 +0 -0
- package/index.css +2 -0
- package/package.json +29 -0
- package/primeicons.css +963 -0
- package/primeicons.woff2 +0 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Azion Technologies
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
7
|
+
the Software without restriction, including without limitation the rights to
|
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
10
|
+
subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
# @aziontech/icons
|
|
2
|
+
|
|
3
|
+
> Icon font library for Azion — **azionicons** (`ai`) + **primeicons** (`pi`) delivered as CSS + woff2.
|
|
4
|
+
|
|
5
|
+
[](LICENSE)
|
|
6
|
+
[](https://www.npmjs.com/package/@aziontech/icons)
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Overview
|
|
11
|
+
|
|
12
|
+
`@aziontech/icons` is a dual icon font package that bundles:
|
|
13
|
+
|
|
14
|
+
| Font | Prefix | Icons | Description |
|
|
15
|
+
|------|--------|-------|-------------|
|
|
16
|
+
| **azionicons** | `ai` | 87 | Azion product, platform, and ecosystem icons |
|
|
17
|
+
| **primeicons** | `pi` | 315 | General-purpose UI icons (PrimeIcons set) |
|
|
18
|
+
|
|
19
|
+
Icons are distributed as **woff2 icon fonts** with matching CSS class utilities, making them framework-agnostic — usable in plain HTML, Vue, React, or any web project.
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## Installation
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npm install @aziontech/icons
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Usage
|
|
32
|
+
|
|
33
|
+
### Import via CSS / bundler
|
|
34
|
+
|
|
35
|
+
```js
|
|
36
|
+
// Import both icon sets (recommended)
|
|
37
|
+
import '@aziontech/icons'
|
|
38
|
+
|
|
39
|
+
// Or import individually
|
|
40
|
+
import '@aziontech/icons/azionicons'
|
|
41
|
+
import '@aziontech/icons/primeicons'
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### Import via HTML `<link>`
|
|
45
|
+
|
|
46
|
+
```html
|
|
47
|
+
<!-- All icons -->
|
|
48
|
+
<link rel="stylesheet" href="node_modules/@aziontech/icons/dist/index.css" />
|
|
49
|
+
|
|
50
|
+
<!-- Or individually -->
|
|
51
|
+
<link rel="stylesheet" href="node_modules/@aziontech/icons/dist/azionicons.css" />
|
|
52
|
+
<link rel="stylesheet" href="node_modules/@aziontech/icons/dist/primeicons.css" />
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Use in HTML
|
|
56
|
+
|
|
57
|
+
```html
|
|
58
|
+
<!-- Azion icons (prefix: ai) -->
|
|
59
|
+
<i class="ai ai-azion"></i>
|
|
60
|
+
<i class="ai ai-edge-application"></i>
|
|
61
|
+
<i class="ai ai-edge-functions"></i>
|
|
62
|
+
|
|
63
|
+
<!-- PrimeIcons (prefix: pi) -->
|
|
64
|
+
<i class="pi pi-home"></i>
|
|
65
|
+
<i class="pi pi-cog"></i>
|
|
66
|
+
<i class="pi pi-search"></i>
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### Package exports
|
|
70
|
+
|
|
71
|
+
The package exposes the following named exports (defined in the generated `dist/package.json`):
|
|
72
|
+
|
|
73
|
+
```js
|
|
74
|
+
import '@aziontech/icons' // → dist/index.css (both sets)
|
|
75
|
+
import '@aziontech/icons/azionicons' // → dist/azionicons.css
|
|
76
|
+
import '@aziontech/icons/primeicons' // → dist/primeicons.css
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## Icon Reference
|
|
82
|
+
|
|
83
|
+
### Azion Icons (`ai`)
|
|
84
|
+
|
|
85
|
+
Azion-specific product and ecosystem icons. All use the `.ai` base class plus a modifier:
|
|
86
|
+
|
|
87
|
+
```html
|
|
88
|
+
<i class="ai ai-azion"></i>
|
|
89
|
+
<i class="ai ai-edge-application"></i>
|
|
90
|
+
<i class="ai ai-edge-functions"></i>
|
|
91
|
+
<i class="ai ai-edge-firewall"></i>
|
|
92
|
+
<i class="ai ai-edge-dns"></i>
|
|
93
|
+
<i class="ai ai-edge-kv"></i>
|
|
94
|
+
<i class="ai ai-edge-sql"></i>
|
|
95
|
+
<i class="ai ai-edge-storage"></i>
|
|
96
|
+
<i class="ai ai-data-stream"></i>
|
|
97
|
+
<i class="ai ai-real-time-metrics"></i>
|
|
98
|
+
<i class="ai ai-real-time-events"></i>
|
|
99
|
+
<i class="ai ai-marketplace"></i>
|
|
100
|
+
<i class="ai ai-domains"></i>
|
|
101
|
+
<i class="ai ai-digital-certificates"></i>
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
Notable category groupings:
|
|
105
|
+
|
|
106
|
+
- **Platform pillars** — `ai-ai-pillar`, `ai-build-pillar`, `ai-deploy-pillar`, `ai-secure-pillar`, `ai-observe-pillar`
|
|
107
|
+
- **Products** — `ai-edge-application`, `ai-edge-functions`, `ai-edge-firewall`, `ai-edge-dns`, `ai-gateway`, `ai-load-balancer`, `ai-waf-rules`, `ai-tiered-cache`, `ai-origin-shield`, `ai-edge-ai`, `ai-edge-connectors`, `ai-edge-libraries`, `ai-edge-nodes`, `ai-edge-orchestrator`, `ai-edge-pulse`, `ai-edge-services`, `ai-workloads`
|
|
108
|
+
- **Storage & Data** — `ai-edge-kv`, `ai-edge-sql`, `ai-edge-storage`, `ai-data-stream`, `ai-variables`
|
|
109
|
+
- **Observability** — `ai-real-time-metrics`, `ai-real-time-events`, `ai-real-time-purge`, `ai-live-ingest`
|
|
110
|
+
- **Security** — `ai-edge-firewall`, `ai-waf-rules`, `ai-network-lists`, `ai-digital-certificates`, `ai-custom-pages`
|
|
111
|
+
- **Networking** — `ai-domains`, `ai-load-balancer`, `ai-origin-shield`, `ai-tiered-cache`
|
|
112
|
+
- **Azion Tools** — `ai-azion-api`, `ai-azion-cli`, `ai-ask-azion`, `ai-marketplace`, `ai-configuration-service`, `ai-integration-services`
|
|
113
|
+
- **Frameworks** — `ai-angular`, `ai-astro`, `ai-docusaurus`, `ai-eleventy`, `ai-gatsby`, `ai-hexo`, `ai-hono`, `ai-hugo`, `ai-jekyll`, `ai-next`, `ai-nuxt`, `ai-preact`, `ai-qwik`, `ai-react`, `ai-remix`, `ai-vite`, `ai-vitepress`, `ai-vue`, `ai-vuepress`
|
|
114
|
+
- **Integrations** — `ai-terraform`, `ai-graphql`, `ai-redis`, `ai-turso`, `ai-lora`, `ai-instructor`
|
|
115
|
+
- **Support & Services** — `ai-professional-services`, `ai-technical-support`, `ai-business-support`, `ai-security-team`, `ai-technical-account`, `ai-pratices-review`
|
|
116
|
+
- **UI & Utility** — `ai-home`, `ai-filter-alt`, `ai-column`, `ai-layers`, `ai-json`, `ai-open`, `ai-sparkles`, `ai-scizors`, `ai-datasheet`, `ai-store`
|
|
117
|
+
- **Social & Media** — `ai-medium`, `ai-rss`, `ai-twitch`, `ai-x`
|
|
118
|
+
|
|
119
|
+
### PrimeIcons (`pi`)
|
|
120
|
+
|
|
121
|
+
A comprehensive general-purpose UI icon set. All use the `.pi` base class:
|
|
122
|
+
|
|
123
|
+
```html
|
|
124
|
+
<i class="pi pi-home"></i>
|
|
125
|
+
<i class="pi pi-cog"></i>
|
|
126
|
+
<i class="pi pi-check"></i>
|
|
127
|
+
<i class="pi pi-times"></i>
|
|
128
|
+
<i class="pi pi-search"></i>
|
|
129
|
+
<i class="pi pi-user"></i>
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
## Sizing & Theming
|
|
135
|
+
|
|
136
|
+
Icons inherit color via `currentColor`, making them trivially themeable with CSS:
|
|
137
|
+
|
|
138
|
+
```css
|
|
139
|
+
.my-icon {
|
|
140
|
+
font-size: 24px; /* control size */
|
|
141
|
+
color: #f97316; /* control color */
|
|
142
|
+
}
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
```html
|
|
146
|
+
<i class="ai ai-azion" style="font-size: 32px; color: var(--brand-color);"></i>
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
The generated CSS base class sets the following properties on each icon prefix (`.ai`, `.pi`):
|
|
150
|
+
|
|
151
|
+
```css
|
|
152
|
+
.ai {
|
|
153
|
+
font-family: 'azionicons';
|
|
154
|
+
speak: none;
|
|
155
|
+
font-style: normal;
|
|
156
|
+
font-weight: normal;
|
|
157
|
+
font-variant: normal;
|
|
158
|
+
text-transform: none;
|
|
159
|
+
line-height: 1;
|
|
160
|
+
display: inline-block;
|
|
161
|
+
-webkit-font-smoothing: antialiased;
|
|
162
|
+
-moz-osx-font-smoothing: grayscale;
|
|
163
|
+
}
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
---
|
|
167
|
+
|
|
168
|
+
## Development
|
|
169
|
+
|
|
170
|
+
### Project structure
|
|
171
|
+
|
|
172
|
+
```
|
|
173
|
+
@aziontech/icons/
|
|
174
|
+
├── dist/ # npm publishable output (gitignored)
|
|
175
|
+
│ ├── azionicons.css
|
|
176
|
+
│ ├── azionicons.woff2
|
|
177
|
+
│ ├── primeicons.css
|
|
178
|
+
│ ├── primeicons.woff2
|
|
179
|
+
│ ├── index.css
|
|
180
|
+
│ ├── package.json # generated for npm publish
|
|
181
|
+
│ ├── LICENSE
|
|
182
|
+
│ └── README.md
|
|
183
|
+
├── src/
|
|
184
|
+
│ └── svg-raw/
|
|
185
|
+
│ ├── ai/ # Azion SVG source files (87 icons)
|
|
186
|
+
│ └── pi/ # PrimeIcons SVG source files (315 icons)
|
|
187
|
+
├── scripts/
|
|
188
|
+
│ ├── build-package.mjs # Build orchestrator: validate → generate → assemble
|
|
189
|
+
│ ├── build.mjs # Font generation via fantasticon
|
|
190
|
+
│ └── validate.mjs # SVG validation script
|
|
191
|
+
├── fantasticon.config.mjs # Font generation configuration (two font configs)
|
|
192
|
+
├── templates/
|
|
193
|
+
│ └── css.hbs # Handlebars CSS template for generated font files
|
|
194
|
+
└── jsconfig.json # JS/TS path aliases (@/ → src/)
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
### Available scripts
|
|
198
|
+
|
|
199
|
+
| Command | Description |
|
|
200
|
+
|---------|-------------|
|
|
201
|
+
| `npm run build` | Validate SVGs → generate fonts → assemble `dist/` for npm |
|
|
202
|
+
| `npm run validate` | Run SVG validation only (`node scripts/validate.mjs`) |
|
|
203
|
+
| `npm run pack:dry` | Preview the npm package contents (`cd dist && npm pack --dry-run`) |
|
|
204
|
+
| `npm run publish` | Publish to npm from `dist/` (`cd dist && npm publish`) |
|
|
205
|
+
| `npm run lint` | Lint source files with ESLint |
|
|
206
|
+
| `npm run format` | Format `scripts/` and `src/` with Prettier |
|
|
207
|
+
|
|
208
|
+
### Adding a new Azion icon
|
|
209
|
+
|
|
210
|
+
1. Place the SVG file in [`src/svg-raw/ai/`](src/svg-raw/ai/) following the naming convention `ai-<icon-name>.svg`
|
|
211
|
+
2. Ensure the SVG meets the [requirements](#svg-requirements) below
|
|
212
|
+
3. Run `npm run build` to regenerate the font files
|
|
213
|
+
4. Verify the icon appears correctly in the generated CSS
|
|
214
|
+
|
|
215
|
+
### Adding a new PrimeIcon
|
|
216
|
+
|
|
217
|
+
Follow the same steps above but place the SVG in [`src/svg-raw/pi/`](src/svg-raw/pi/) using the `pi-` prefix.
|
|
218
|
+
|
|
219
|
+
### SVG requirements
|
|
220
|
+
|
|
221
|
+
All SVG source files are validated by [`scripts/validate.mjs`](scripts/validate.mjs) before font generation. SVGs must:
|
|
222
|
+
|
|
223
|
+
| Requirement | Detail |
|
|
224
|
+
|-------------|--------|
|
|
225
|
+
| ✅ Have a `<path>` element | Icon fonts require path data |
|
|
226
|
+
| ✅ Use `fill` (not `stroke`) | Icon fonts only support filled shapes |
|
|
227
|
+
| ✅ Use `currentColor` for fill | Enables CSS color theming (no `fill="black"` or `fill="#000"`) |
|
|
228
|
+
| ✅ Square `viewBox` | Required for consistent rendering |
|
|
229
|
+
| ✅ `24x24` viewBox preferred | Standard size (`viewBox="0 0 24 24"`) |
|
|
230
|
+
| ✅ No spaces in filename | Causes build failures |
|
|
231
|
+
| ✅ No placeholder content | No `<rect>` + `<text>` with `?` |
|
|
232
|
+
| ⚠️ No `<clipPath>` | May not render correctly in icon fonts |
|
|
233
|
+
|
|
234
|
+
Run the validation script at any time:
|
|
235
|
+
|
|
236
|
+
```bash
|
|
237
|
+
node scripts/validate.mjs
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
The report shows ❌ errors (blocking — build will fail), ⚠️ warnings (may affect rendering), and ℹ️ info messages.
|
|
241
|
+
|
|
242
|
+
**Error-level checks** (block build):
|
|
243
|
+
- Placeholder / incomplete SVGs
|
|
244
|
+
- Missing `<path>` element
|
|
245
|
+
- Filenames with spaces
|
|
246
|
+
|
|
247
|
+
**Warning-level checks** (non-blocking):
|
|
248
|
+
- Stroke-based paths
|
|
249
|
+
- `fill="black"` / `fill="#000"` / `fill="#000000"` (should use `currentColor`)
|
|
250
|
+
- `<clipPath>` usage
|
|
251
|
+
- Non-square viewBox
|
|
252
|
+
|
|
253
|
+
**Info-level checks**:
|
|
254
|
+
- Non-standard viewBox size (anything other than 24×24)
|
|
255
|
+
|
|
256
|
+
---
|
|
257
|
+
|
|
258
|
+
## Font generation
|
|
259
|
+
|
|
260
|
+
Fonts are generated using [**fantasticon**](https://github.com/tancredi/fantasticon) configured in [`fantasticon.config.mjs`](fantasticon.config.mjs):
|
|
261
|
+
|
|
262
|
+
- **Input**: `src/svg-raw/ai/` and `src/svg-raw/pi/`
|
|
263
|
+
- **Output format**: `woff2` only
|
|
264
|
+
- **Asset types**: `css` only
|
|
265
|
+
- **Output**: `dist/` (CSS + woff2)
|
|
266
|
+
- **Font height**: 1000 units (normalized)
|
|
267
|
+
- **CSS template**: [`templates/css.hbs`](templates/css.hbs) — generates `@font-face` declaration + `.prefix.icon-name::before` rules
|
|
268
|
+
|
|
269
|
+
```bash
|
|
270
|
+
npm run build
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
### Build pipeline (`build`)
|
|
274
|
+
|
|
275
|
+
The [`scripts/build-package.mjs`](scripts/build-package.mjs) orchestrator runs 7 steps:
|
|
276
|
+
|
|
277
|
+
1. **Validate SVGs** — runs `scripts/validate.mjs` (blocks on errors)
|
|
278
|
+
2. **Clean `dist/`** — removes and recreates the output directory
|
|
279
|
+
3. **Generate fonts** — runs `scripts/build.mjs` (fantasticon for both `ai` and `pi`)
|
|
280
|
+
4. **Create `index.css`** — barrel file importing both `azionicons.css` and `primeicons.css`
|
|
281
|
+
5. **Generate `dist/package.json`** — creates a clean package manifest with exports for npm
|
|
282
|
+
6. **Copy LICENSE & README.md** — into `dist/` for npm
|
|
283
|
+
7. **Sync to `src/icon-fonts/`** — copies CSS + woff2 for local development use
|
|
284
|
+
|
|
285
|
+
### Publishing
|
|
286
|
+
|
|
287
|
+
The package is published from the `dist/` directory, which contains its own generated `package.json`:
|
|
288
|
+
|
|
289
|
+
```bash
|
|
290
|
+
# Build the package
|
|
291
|
+
npm run build
|
|
292
|
+
|
|
293
|
+
# Preview package contents
|
|
294
|
+
npm run pack:dry
|
|
295
|
+
|
|
296
|
+
# Publish to npm
|
|
297
|
+
npm run publish
|
|
298
|
+
```
|
|
299
|
+
|
|
300
|
+
> **Note:** The root `package.json` has `"private": true` to prevent accidental publishing from the root. The generated `dist/package.json` is the actual publishable manifest.
|
|
301
|
+
|
|
302
|
+
---
|
|
303
|
+
|
|
304
|
+
## Tech stack
|
|
305
|
+
|
|
306
|
+
| Tool | Purpose |
|
|
307
|
+
|------|---------|
|
|
308
|
+
| [fantasticon](https://github.com/tancredi/fantasticon) | SVG → woff2 icon font generation |
|
|
309
|
+
| [ESLint](https://eslint.org/) | Linting |
|
|
310
|
+
| [Prettier](https://prettier.io/) | Code formatting |
|
|
311
|
+
|
|
312
|
+
---
|
|
313
|
+
|
|
314
|
+
## License
|
|
315
|
+
|
|
316
|
+
[MIT](LICENSE) © 2026 Azion Technologies
|
package/azionicons.css
ADDED
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'azionicons';
|
|
3
|
+
src: url('azionicons.woff2') format('woff2');
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.ai {
|
|
7
|
+
font-family: 'azionicons';
|
|
8
|
+
speak: none;
|
|
9
|
+
font-style: normal;
|
|
10
|
+
font-weight: normal;
|
|
11
|
+
font-variant: normal;
|
|
12
|
+
text-transform: none;
|
|
13
|
+
line-height: 1;
|
|
14
|
+
display: inline-block;
|
|
15
|
+
-webkit-font-smoothing: antialiased;
|
|
16
|
+
-moz-osx-font-smoothing: grayscale;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.ai.ai-x::before {
|
|
20
|
+
content: '\f101';
|
|
21
|
+
}
|
|
22
|
+
.ai.ai-workloads::before {
|
|
23
|
+
content: '\f102';
|
|
24
|
+
}
|
|
25
|
+
.ai.ai-waf-rules::before {
|
|
26
|
+
content: '\f103';
|
|
27
|
+
}
|
|
28
|
+
.ai.ai-vuepress::before {
|
|
29
|
+
content: '\f104';
|
|
30
|
+
}
|
|
31
|
+
.ai.ai-vue::before {
|
|
32
|
+
content: '\f105';
|
|
33
|
+
}
|
|
34
|
+
.ai.ai-vitepress::before {
|
|
35
|
+
content: '\f106';
|
|
36
|
+
}
|
|
37
|
+
.ai.ai-vite::before {
|
|
38
|
+
content: '\f107';
|
|
39
|
+
}
|
|
40
|
+
.ai.ai-variables::before {
|
|
41
|
+
content: '\f108';
|
|
42
|
+
}
|
|
43
|
+
.ai.ai-twitch::before {
|
|
44
|
+
content: '\f109';
|
|
45
|
+
}
|
|
46
|
+
.ai.ai-turso::before {
|
|
47
|
+
content: '\f10a';
|
|
48
|
+
}
|
|
49
|
+
.ai.ai-tiered-cache::before {
|
|
50
|
+
content: '\f10b';
|
|
51
|
+
}
|
|
52
|
+
.ai.ai-terraform::before {
|
|
53
|
+
content: '\f10c';
|
|
54
|
+
}
|
|
55
|
+
.ai.ai-technical-support::before {
|
|
56
|
+
content: '\f10d';
|
|
57
|
+
}
|
|
58
|
+
.ai.ai-technical-account::before {
|
|
59
|
+
content: '\f10e';
|
|
60
|
+
}
|
|
61
|
+
.ai.ai-store::before {
|
|
62
|
+
content: '\f10f';
|
|
63
|
+
}
|
|
64
|
+
.ai.ai-sparkles::before {
|
|
65
|
+
content: '\f110';
|
|
66
|
+
}
|
|
67
|
+
.ai.ai-security-team::before {
|
|
68
|
+
content: '\f111';
|
|
69
|
+
}
|
|
70
|
+
.ai.ai-secure-pillar::before {
|
|
71
|
+
content: '\f112';
|
|
72
|
+
}
|
|
73
|
+
.ai.ai-scizors::before {
|
|
74
|
+
content: '\f113';
|
|
75
|
+
}
|
|
76
|
+
.ai.ai-rss::before {
|
|
77
|
+
content: '\f114';
|
|
78
|
+
}
|
|
79
|
+
.ai.ai-remix::before {
|
|
80
|
+
content: '\f115';
|
|
81
|
+
}
|
|
82
|
+
.ai.ai-redis::before {
|
|
83
|
+
content: '\f116';
|
|
84
|
+
}
|
|
85
|
+
.ai.ai-real-time-purge::before {
|
|
86
|
+
content: '\f117';
|
|
87
|
+
}
|
|
88
|
+
.ai.ai-real-time-metrics::before {
|
|
89
|
+
content: '\f118';
|
|
90
|
+
}
|
|
91
|
+
.ai.ai-real-time-events::before {
|
|
92
|
+
content: '\f119';
|
|
93
|
+
}
|
|
94
|
+
.ai.ai-react::before {
|
|
95
|
+
content: '\f11a';
|
|
96
|
+
}
|
|
97
|
+
.ai.ai-qwik::before {
|
|
98
|
+
content: '\f11b';
|
|
99
|
+
}
|
|
100
|
+
.ai.ai-professional-services::before {
|
|
101
|
+
content: '\f11c';
|
|
102
|
+
}
|
|
103
|
+
.ai.ai-preact::before {
|
|
104
|
+
content: '\f11d';
|
|
105
|
+
}
|
|
106
|
+
.ai.ai-pratices-review::before {
|
|
107
|
+
content: '\f11e';
|
|
108
|
+
}
|
|
109
|
+
.ai.ai-origin-shield::before {
|
|
110
|
+
content: '\f11f';
|
|
111
|
+
}
|
|
112
|
+
.ai.ai-open::before {
|
|
113
|
+
content: '\f120';
|
|
114
|
+
}
|
|
115
|
+
.ai.ai-observe-pillar::before {
|
|
116
|
+
content: '\f121';
|
|
117
|
+
}
|
|
118
|
+
.ai.ai-nuxt::before {
|
|
119
|
+
content: '\f122';
|
|
120
|
+
}
|
|
121
|
+
.ai.ai-next::before {
|
|
122
|
+
content: '\f123';
|
|
123
|
+
}
|
|
124
|
+
.ai.ai-network-lists::before {
|
|
125
|
+
content: '\f124';
|
|
126
|
+
}
|
|
127
|
+
.ai.ai-medium::before {
|
|
128
|
+
content: '\f125';
|
|
129
|
+
}
|
|
130
|
+
.ai.ai-marketplace::before {
|
|
131
|
+
content: '\f126';
|
|
132
|
+
}
|
|
133
|
+
.ai.ai-lora::before {
|
|
134
|
+
content: '\f127';
|
|
135
|
+
}
|
|
136
|
+
.ai.ai-load-balancer::before {
|
|
137
|
+
content: '\f128';
|
|
138
|
+
}
|
|
139
|
+
.ai.ai-live-ingest::before {
|
|
140
|
+
content: '\f129';
|
|
141
|
+
}
|
|
142
|
+
.ai.ai-layers::before {
|
|
143
|
+
content: '\f12a';
|
|
144
|
+
}
|
|
145
|
+
.ai.ai-json::before {
|
|
146
|
+
content: '\f12b';
|
|
147
|
+
}
|
|
148
|
+
.ai.ai-jekyll::before {
|
|
149
|
+
content: '\f12c';
|
|
150
|
+
}
|
|
151
|
+
.ai.ai-integration-services::before {
|
|
152
|
+
content: '\f12d';
|
|
153
|
+
}
|
|
154
|
+
.ai.ai-instructor::before {
|
|
155
|
+
content: '\f12e';
|
|
156
|
+
}
|
|
157
|
+
.ai.ai-hugo::before {
|
|
158
|
+
content: '\f12f';
|
|
159
|
+
}
|
|
160
|
+
.ai.ai-hono::before {
|
|
161
|
+
content: '\f130';
|
|
162
|
+
}
|
|
163
|
+
.ai.ai-home::before {
|
|
164
|
+
content: '\f131';
|
|
165
|
+
}
|
|
166
|
+
.ai.ai-hexo::before {
|
|
167
|
+
content: '\f132';
|
|
168
|
+
}
|
|
169
|
+
.ai.ai-graphql::before {
|
|
170
|
+
content: '\f133';
|
|
171
|
+
}
|
|
172
|
+
.ai.ai-gatsby::before {
|
|
173
|
+
content: '\f134';
|
|
174
|
+
}
|
|
175
|
+
.ai.ai-gateway::before {
|
|
176
|
+
content: '\f135';
|
|
177
|
+
}
|
|
178
|
+
.ai.ai-filter-alt::before {
|
|
179
|
+
content: '\f136';
|
|
180
|
+
}
|
|
181
|
+
.ai.ai-eleventy::before {
|
|
182
|
+
content: '\f137';
|
|
183
|
+
}
|
|
184
|
+
.ai.ai-edge-storage::before {
|
|
185
|
+
content: '\f138';
|
|
186
|
+
}
|
|
187
|
+
.ai.ai-edge-sql::before {
|
|
188
|
+
content: '\f139';
|
|
189
|
+
}
|
|
190
|
+
.ai.ai-edge-services::before {
|
|
191
|
+
content: '\f13a';
|
|
192
|
+
}
|
|
193
|
+
.ai.ai-edge-pulse::before {
|
|
194
|
+
content: '\f13b';
|
|
195
|
+
}
|
|
196
|
+
.ai.ai-edge-orchestrator::before {
|
|
197
|
+
content: '\f13c';
|
|
198
|
+
}
|
|
199
|
+
.ai.ai-edge-nodes::before {
|
|
200
|
+
content: '\f13d';
|
|
201
|
+
}
|
|
202
|
+
.ai.ai-edge-libraries::before {
|
|
203
|
+
content: '\f13e';
|
|
204
|
+
}
|
|
205
|
+
.ai.ai-edge-kv::before {
|
|
206
|
+
content: '\f13f';
|
|
207
|
+
}
|
|
208
|
+
.ai.ai-edge-functions::before {
|
|
209
|
+
content: '\f140';
|
|
210
|
+
}
|
|
211
|
+
.ai.ai-edge-firewall::before {
|
|
212
|
+
content: '\f141';
|
|
213
|
+
}
|
|
214
|
+
.ai.ai-edge-dns::before {
|
|
215
|
+
content: '\f142';
|
|
216
|
+
}
|
|
217
|
+
.ai.ai-edge-connectors::before {
|
|
218
|
+
content: '\f143';
|
|
219
|
+
}
|
|
220
|
+
.ai.ai-edge-application::before {
|
|
221
|
+
content: '\f144';
|
|
222
|
+
}
|
|
223
|
+
.ai.ai-edge-ai::before {
|
|
224
|
+
content: '\f145';
|
|
225
|
+
}
|
|
226
|
+
.ai.ai-domains::before {
|
|
227
|
+
content: '\f146';
|
|
228
|
+
}
|
|
229
|
+
.ai.ai-docusaurus::before {
|
|
230
|
+
content: '\f147';
|
|
231
|
+
}
|
|
232
|
+
.ai.ai-digital-certificates::before {
|
|
233
|
+
content: '\f148';
|
|
234
|
+
}
|
|
235
|
+
.ai.ai-deploy-pillar::before {
|
|
236
|
+
content: '\f149';
|
|
237
|
+
}
|
|
238
|
+
.ai.ai-datasheet::before {
|
|
239
|
+
content: '\f14a';
|
|
240
|
+
}
|
|
241
|
+
.ai.ai-data-stream::before {
|
|
242
|
+
content: '\f14b';
|
|
243
|
+
}
|
|
244
|
+
.ai.ai-custom-pages::before {
|
|
245
|
+
content: '\f14c';
|
|
246
|
+
}
|
|
247
|
+
.ai.ai-configuration-service::before {
|
|
248
|
+
content: '\f14d';
|
|
249
|
+
}
|
|
250
|
+
.ai.ai-column::before {
|
|
251
|
+
content: '\f14e';
|
|
252
|
+
}
|
|
253
|
+
.ai.ai-business-support::before {
|
|
254
|
+
content: '\f14f';
|
|
255
|
+
}
|
|
256
|
+
.ai.ai-build-pillar::before {
|
|
257
|
+
content: '\f150';
|
|
258
|
+
}
|
|
259
|
+
.ai.ai-azion::before {
|
|
260
|
+
content: '\f151';
|
|
261
|
+
}
|
|
262
|
+
.ai.ai-azion-cli::before {
|
|
263
|
+
content: '\f152';
|
|
264
|
+
}
|
|
265
|
+
.ai.ai-azion-api::before {
|
|
266
|
+
content: '\f153';
|
|
267
|
+
}
|
|
268
|
+
.ai.ai-astro::before {
|
|
269
|
+
content: '\f154';
|
|
270
|
+
}
|
|
271
|
+
.ai.ai-angular::before {
|
|
272
|
+
content: '\f155';
|
|
273
|
+
}
|
|
274
|
+
.ai.ai-ai-pillar::before {
|
|
275
|
+
content: '\f156';
|
|
276
|
+
}
|
package/azionicons.woff2
ADDED
|
Binary file
|
package/index.css
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aziontech/icons",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Azion icon font library — azionicons + primeicons as CSS/woff2",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"icons",
|
|
7
|
+
"icon-font",
|
|
8
|
+
"azion",
|
|
9
|
+
"primeicons",
|
|
10
|
+
"css",
|
|
11
|
+
"woff2"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/aziontech/webkit.git",
|
|
17
|
+
"directory": "packages/icons"
|
|
18
|
+
},
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"style": "index.css",
|
|
23
|
+
"main": "index.css",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": "./index.css",
|
|
26
|
+
"./azionicons": "./azionicons.css",
|
|
27
|
+
"./primeicons": "./primeicons.css"
|
|
28
|
+
}
|
|
29
|
+
}
|