Skip to content

Commit 87159b8

Browse files
committed
chore: Add all icon files and project setup
0 parents  commit 87159b8

1,118 files changed

Lines changed: 12092 additions & 0 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
5+
# Production builds
6+
dist/
7+
build/
8+
*.tgz
9+
10+
# Environment variables
11+
.env
12+
.env.local
13+
.env.development.local
14+
.env.test.local
15+
.env.production.local
16+
17+
# Runtime data
18+
pids
19+
*.pid
20+
*.seed
21+
*.pid.lock
22+
23+
# Coverage directory used by tools like istanbul
24+
coverage/
25+
*.lcov
26+
27+
# nyc test coverage
28+
.nyc_output
29+
30+
# Dependency directories
31+
jspm_packages/
32+
33+
# Optional npm cache directory
34+
.npm
35+
36+
# Optional eslint cache
37+
.eslintcache
38+
39+
# Optional REPL history
40+
.node_repl_history
41+
42+
# Output of 'npm pack'
43+
*.tgz
44+
45+
# Yarn Integrity file
46+
.yarn-integrity
47+
48+
# parcel-bundler cache (https://parceljs.org/)
49+
.cache
50+
.parcel-cache
51+
52+
# next.js build output
53+
.next
54+
55+
# nuxt.js build output
56+
.nuxt
57+
58+
# vuepress build output
59+
.vuepress/dist
60+
61+
# Serverless directories
62+
.serverless
63+
64+
# FuseBox cache
65+
.fusebox/
66+
67+
# DynamoDB Local files
68+
.dynamodb/
69+
70+
# TernJS port file
71+
.tern-port
72+
73+
# IDE and editor files
74+
.vscode/
75+
.idea/
76+
*.swp
77+
*.swo
78+
*~
79+
80+
# OS generated files
81+
.DS_Store
82+
.DS_Store?
83+
._*
84+
.Spotlight-V100
85+
.Trashes
86+
ehthumbs.db
87+
Thumbs.db
88+
89+
# Logs
90+
logs
91+
*.log
92+
93+
# Temporary folders
94+
tmp/
95+
temp/
96+
97+
# TypeScript cache
98+
*.tsbuildinfo
99+
100+
# Rollup cache
101+
.rollup.cache/
102+
103+
# Jest cache
104+
.jest/
105+
106+
# Storybook build outputs
107+
storybook-static
108+
109+
# Rush temporary files
110+
common/deploy/
111+
common/temp/
112+
common/autoinstallers/*/.npmrc
113+
**/.rush/temp/
114+
115+
# Stores VSCode versions used for testing VSCode extensions
116+
.vscode-test
117+
118+
# Generated files (auto-generated from SVGs, should not be committed)
119+
src/icons/*.tsx
120+
src/index.ts
121+

LICENSE

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

icons/address-card-duotone.svg

Lines changed: 7 additions & 0 deletions
Loading

icons/address-card-filled.svg

Lines changed: 3 additions & 0 deletions
Loading

icons/address-card-light.svg

Lines changed: 7 additions & 0 deletions
Loading

icons/address-card-regular.svg

Lines changed: 7 additions & 0 deletions
Loading

icons/alarm-clock-duotone-line.svg

Lines changed: 7 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)