@tabler/icons-webfont 2.0.0-beta.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020-2023 Paweł Kuna
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, 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,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,84 @@
1
+ # Tabler Icons Webfont
2
+
3
+ <p align="center">
4
+ <img src="https://raw.githubusercontent.com/tabler/tabler-icons/master/.github/og.png" alt="Tabler Icons" width="838">
5
+ </p>
6
+
7
+ <p align="center">
8
+ Implementation of the Tabler Icons library for Vue 3 applications.
9
+ <p>
10
+
11
+ <p align="center">
12
+ <a href="https://tabler-icons.io/"><strong>Browse all icons at tabler-icons.io &rarr;</strong></a>
13
+ </p>
14
+
15
+ <p align="center">
16
+ <a href="https://github.com/tabler/tabler-icons/releases"><img src="https://img.shields.io/npm/v/@tabler/icons" alt="Latest Release"></a>
17
+ <a href="https://github.com/tabler/tabler-icons/blob/master/LICENSE"><img src="https://img.shields.io/npm/l/@tabler/icons.svg" alt="License"></a>
18
+ </p>
19
+
20
+ ## Sponsors
21
+
22
+ **If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate on PayPal](https://paypal.me/codecalm) :)**
23
+
24
+ <a href="https://github.com/sponsors/codecalm">
25
+ <img src='https://raw.githubusercontent.com/tabler/static/main/sponsors.png'>
26
+ </a>
27
+
28
+ ### Sponsor Tabler
29
+
30
+ <a href="https://github.com/sponsors/codecalm" target="_blank"><img src="https://github.com/tabler/tabler/raw/dev/src/static/sponsor-banner-readme.png?raw=true" alt="Sponsor Tabler" /></a>
31
+
32
+ ## Installation
33
+
34
+ ```
35
+ yarn add @tabler/icons-webfont
36
+ ```
37
+
38
+ or
39
+
40
+ ```
41
+ npm install @tabler/icons-webfont
42
+ ```
43
+
44
+ or
45
+
46
+ ```
47
+ pnpm install @tabler/icons-webfont
48
+ ```
49
+
50
+ or just [download from Github](https://github.com/tabler/tabler-icons/releases).
51
+
52
+ ### CDN
53
+
54
+ ```html
55
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/icons@latest/iconfont/tabler-icons.min.css">
56
+ ```
57
+
58
+ ## Usage
59
+
60
+ ### HTML
61
+ ```html
62
+ <i class="ti ti-brand-tabler"></i>
63
+ ```
64
+
65
+ ### CSS
66
+ ```css
67
+ content: 'ec8f';
68
+ ```
69
+
70
+
71
+ ### SCSS
72
+ ```scss
73
+ content: $ti-icon-brand-tabler;
74
+ ```
75
+
76
+ ## Contributing
77
+
78
+ For more info on how to contribute please see the [contribution guidelines](https://github.com/tabler/tabler-icons/blob/main/CONTRIBUTING.md).
79
+
80
+ Caught a mistake or want to contribute to the documentation? [Edit this page on Github](https://github.com/tabler/tabler-icons/blob/main/packages/icons-vue/README.md)
81
+
82
+ ## License
83
+
84
+ Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/master/LICENSE).
Binary file
Binary file
Binary file
Binary file
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@tabler/icons-webfont",
3
+ "version": "2.0.0-beta.2",
4
+ "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
5
+ "homepage": "https://tabler-icons.io",
6
+ "bugs": {
7
+ "url": "https://github.com/tabler/tabler-icons/issues"
8
+ },
9
+ "funding": {
10
+ "type": "github",
11
+ "url": "https://github.com/sponsors/codecalm"
12
+ },
13
+ "scripts": {
14
+ "build": "pnpm run clean && pnpm run copy && pnpm run build:prepare && pnpm run build:outline && pnpm run build:optimize && pnpm run build:fix-outline && pnpm run build:webfont && pnpm run build:css && pnpm run build:clean",
15
+ "build:prepare": "mkdir -p icons-outlined fonts && rm -fd icons-outlined/* fonts/*",
16
+ "build:outline": "node .build/build-outline.mjs",
17
+ "build:optimize": "svgo icons-outlined/*",
18
+ "build:fix-outline": "fontforge -lang=py -script .build/fix-outline.py",
19
+ "build:webfont": "rm -fd fonts/* && node .build/build-webfont.mjs",
20
+ "build:css": "scss tabler-icons.scss tabler-icons.css --style expanded && scss tabler-icons.scss tabler-icons.min.css --style compressed",
21
+ "build:clean": "rm -rf ./icons-outlined",
22
+ "clean": "rm -rf ./iconfont",
23
+ "copy": "pnpm run copy:license",
24
+ "copy:license": "cp ../../LICENSE ./LICENSE"
25
+ },
26
+ "files": [
27
+ "fonts/*",
28
+ "tabler-icons.*"
29
+ ],
30
+ "exports": {
31
+ "./*": [
32
+ "./icons/*"
33
+ ]
34
+ },
35
+ "dependencies": {
36
+ "@tabler/icons": "2.0.0-beta.2"
37
+ },
38
+ "keywords": [
39
+ "icons",
40
+ "svg",
41
+ "png",
42
+ "iconfont",
43
+ "react",
44
+ "front-end",
45
+ "web"
46
+ ],
47
+ "devDependencies": {
48
+ "webfont": "^11.2.26"
49
+ }
50
+ }