@udixio/icons-sharp-200 0.0.1 → 0.1.1
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/CHANGELOG.md +13 -0
- package/README.md +58 -0
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
## 0.1.1 (2026-02-15)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **icons:** add new icon packages for outlined, rounded, and sharp styles with weights 100-700 ([8c4a5fe](https://github.com/Udixio/UI/commit/8c4a5fe))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Joël VIGREUX
|
|
10
|
+
|
|
11
|
+
## 0.1.0 (2026-02-15)
|
|
12
|
+
|
|
13
|
+
This was a version bump only for @udixio/icons-sharp-200 to align it with other projects, there were no code changes.
|
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# @udixio/icons-sharp-200
|
|
2
|
+
|
|
3
|
+
[Material Symbols](https://fonts.google.com/icons) icons as tree-shakable SVG strings — **sharp** style, weight **200**.
|
|
4
|
+
|
|
5
|
+
Part of the [@udixio/ui](https://github.com/Udixio/UI) ecosystem.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pnpm add @udixio/icons-sharp-200
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
Import icons individually by name. Each icon is a standalone module, ensuring only the icons you use are included in your bundle.
|
|
16
|
+
|
|
17
|
+
```ts
|
|
18
|
+
import { iHome } from '@udixio/icons-sharp-200/home'
|
|
19
|
+
import { iSettings } from '@udixio/icons-sharp-200/settings'
|
|
20
|
+
import { iSearch } from '@udixio/icons-sharp-200/search'
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Filled variants
|
|
24
|
+
|
|
25
|
+
Filled versions are available under the `/filled/` path:
|
|
26
|
+
|
|
27
|
+
```ts
|
|
28
|
+
import { iHomeFilled } from '@udixio/icons-sharp-200/filled/home'
|
|
29
|
+
import { iStarFilled } from '@udixio/icons-sharp-200/filled/star'
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### With @udixio/ui-react
|
|
33
|
+
|
|
34
|
+
```tsx
|
|
35
|
+
import { Icon, IconButton } from '@udixio/ui-react'
|
|
36
|
+
import { iStar } from '@udixio/icons-sharp-200/star'
|
|
37
|
+
import { iStarFilled } from '@udixio/icons-sharp-200/filled/star'
|
|
38
|
+
|
|
39
|
+
// Simple icon
|
|
40
|
+
<Icon icon={iStar} />
|
|
41
|
+
|
|
42
|
+
// Toggle icon button
|
|
43
|
+
<IconButton
|
|
44
|
+
icon={iStar}
|
|
45
|
+
iconSelected={iStarFilled}
|
|
46
|
+
onToggle={(active) => console.log(active)}
|
|
47
|
+
/>
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Icon names
|
|
51
|
+
|
|
52
|
+
Icons follow the naming convention `i{PascalCaseName}` (e.g., `iKeyboardArrowDown`, `iDarkMode`). Filled variants append `Filled` (e.g., `iStarFilled`).
|
|
53
|
+
|
|
54
|
+
Browse all available icons at [Material Symbols](https://fonts.google.com/icons?icon.set=Material+Symbols&icon.style=Sharp&icon.weight=200).
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
Apache-2.0
|