Skip to content

Commit d14e224

Browse files
committed
Initial push of ProXIcons code
0 parents  commit d14e224

File tree

1,656 files changed

+20637
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,656 files changed

+20637
-0
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2025 ProgrammerKR
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.

README.md

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# ProXIcons
2+
[![GitHub issues](https://img.shields.io/github/issues/ProgrammerKR/ProXIcons.svg)](https://github.com/ProgrammerKR/ProXIcons/issues)
3+
[![Twitter](https://img.shields.io/twitter/url/https/github.com/ProgrammerKR/ProXIcons.svg?style=social)](https://twitter.com/intent/tweet?text=Check%20out%20ProXIcons:&url=https%3A%2F%2Fgithub.com%2FProgrammerKR%2FProXIcons)
4+
[![Donate](https://img.shields.io/badge/donate-paypal-blue.svg?style=flat-square)](https://paypal.me/ProgrammerKR)
5+
6+
_High Quality, Modern, and Lightweight Open Source Icons_
7+
8+
**ProXIcons** is a clean, developer-friendly iconset crafted for modern web, app, and design projects. With over 1500+ icons and a focus on performance, ProXIcons is your go-to icon library for any creative need.
9+
10+
## What's New in v1.0.0
11+
12+
- Initial release with 1500+ unique icons
13+
- Supports regular, solid, and brand variants
14+
- Includes Web Component for seamless integration
15+
16+
## Installation
17+
18+
To install via npm:
19+
20+
```bash
21+
npm install proxicons --save
22+
```
23+
24+
Import the module:
25+
26+
```javascript
27+
import 'proxicons';
28+
```
29+
30+
## Usage
31+
32+
### Using via CSS
33+
34+
1. Include the stylesheet in your HTML `<head>`:
35+
36+
```html
37+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/proxicons@latest/css/proxicons.min.css">
38+
```
39+
40+
2. Use the icons with classes `px`, `pxs`, and `pxl`:
41+
42+
```html
43+
<i class="px px-lightbulb"></i>
44+
<i class="pxs px-lightbulb"></i>
45+
<i class="pxl px-github"></i>
46+
```
47+
48+
### Using via Web Component
49+
50+
```html
51+
<script src="https://cdn.jsdelivr.net/npm/proxicons@latest/dist/proxicons.js"></script>
52+
```
53+
54+
Example usage:
55+
56+
```html
57+
<prox-icon name="lightbulb"></prox-icon>
58+
<prox-icon type="solid" name="lightbulb"></prox-icon>
59+
<prox-icon type="logo" name="github"></prox-icon>
60+
```
61+
62+
#### Attributes
63+
64+
```html
65+
<prox-icon
66+
type="regular|solid|logo"
67+
name="icon-name"
68+
color="blue|red|..."
69+
size="xs|sm|md|lg|40px"
70+
rotate="90|180|270"
71+
flip="horizontal|vertical"
72+
border="square|circle"
73+
animation="spin|tada|..."
74+
pull="left|right"
75+
></prox-icon>
76+
```
77+
78+
## Contributors
79+
80+
Thanks to all contributors who help maintain and improve this project!
81+
82+
## License
83+
84+
- Icons: CC 4.0
85+
- Fonts: SIL OFL 1.1
86+
- Other Files: MIT
87+
88+
[Read the full license here](https://github.com/ProgrammerKR/ProXIcons/blob/main/LICENSE)
89+
90+
## Contributing
91+
92+
Pull requests and contributions are welcome! Caught an issue or have an idea? [Open an issue](https://github.com/ProgrammerKR/ProXIcons/issues) or [edit the README](https://github.com/ProgrammerKR/ProXIcons/edit/main/README.md)

bower.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "proxicons",
3+
"authors": [
4+
"atisawd <[email protected]>"
5+
],
6+
"description": "High Quality Web Icons",
7+
"main": "./dist/proxicons.js",
8+
"license": "MIT",
9+
"homepage": "https://github.com/atisawd/proxicons",
10+
"ignore": [
11+
"**/.*",
12+
"node_modules",
13+
"bower_components",
14+
"test",
15+
"tests",
16+
"*.md"
17+
]
18+
}

0 commit comments

Comments
 (0)