@tabler/icons-sprite 3.0.0-beta

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-2024 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,70 @@
1
+ # Tabler Icons
2
+
3
+ <p align="center">
4
+ <img src="https://raw.githubusercontent.com/tabler/tabler-icons/master/.github/packages/og-core.png" alt="Tabler Icons" width="838">
5
+ </p>
6
+
7
+ <p align="center">
8
+ A set of <!--icons-count-->5201<!--/icons-count--> free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a 2px stroke.
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-sprite" 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-sprite.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
+ ## Installation
29
+
30
+ ```
31
+ yarn add @tabler/icons-sprite
32
+ ```
33
+
34
+ or
35
+
36
+ ```
37
+ npm install @tabler/icons-sprite
38
+ ```
39
+
40
+ or
41
+
42
+ ```
43
+ pnpm install @tabler/icons-sprite
44
+ ```
45
+
46
+ or just [download from Github](https://github.com/tabler/tabler-icons/releases).
47
+
48
+ ## Usage
49
+
50
+ Add an icon to be displayed on your page with the following markup (`activity` in the above example can be replaced with any valid icon name):
51
+
52
+ ```html
53
+ <svg width="24" height="24">
54
+ <use xlink:href="path/to/tabler-sprite.svg#tabler-activity" />
55
+ </svg>
56
+ ```
57
+
58
+ ## Contributing
59
+
60
+ For more info on how to contribute please see the [contribution guidelines](https://github.com/tabler/tabler-icons/blob/main/CONTRIBUTING.md).
61
+
62
+ 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/README.md)
63
+
64
+ ## License
65
+
66
+ Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/master/LICENSE).
67
+
68
+ ## Sponsor Tabler
69
+
70
+ <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>