Skip to content

Commit ddf3362

Browse files
committed
feat(icons): add new icons and update package version
Added new icons including "lock," "unlock," "filet-jsx," "filet-tsx," "file-code," and "folder-open" to the IconName interface and corresponding Unicode values in the icons object. Updated the package version from `0.0.6` to `0.0.7` to reflect these additions. This enhancement expands the available icon set, providing more options for users without impacting existing functionality.
1 parent dcb7712 commit ddf3362

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed
Binary file not shown.

npm-packages/src/packages/components/ra-icons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@flexnative/icons",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "React Native Icons using fonts",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

npm-packages/src/packages/components/ra-icons/src/props.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @ Author: Redon Alla
33
* @ Create Time: 2024-10-27 14:25:26
44
* @ Modified by: Redon Alla
5-
* @ Modified time: 2025-02-15 22:56:12
5+
* @ Modified time: 2025-02-17 23:52:03
66
* @ Description: Props for Icon component.
77
*/
88

@@ -15,6 +15,12 @@ import { Color, FontSize } from '@flexnative/theme-context';
1515
* These names can be used to access the corresponding Unicode value from the `icons` object.
1616
*/
1717
export interface IconName {
18+
readonly "lock": string;
19+
readonly "unlock": string;
20+
readonly "filet-jsx": string;
21+
readonly "filet-tsx": string;
22+
readonly "file-code": string;
23+
readonly "folder-open": string;
1824
readonly "rocket": string;
1925
readonly "shield-lock": string;
2026
readonly "fingerprint": string;
@@ -77,6 +83,12 @@ export interface IconName {
7783
*/
7884
export const icons = {
7985
"rocket": "\ue931",
86+
"lock": "\ue936",
87+
"unlock": "\ue937",
88+
"filet-jsx": "\ue932",
89+
"filet-tsx": "\ue933",
90+
"file-code": "\ue934",
91+
"folder-open": "\ue935",
8092
"shield-lock": "\ue92f",
8193
"fingerprint": "\ue930",
8294
"layout": "\ue92e",

0 commit comments

Comments
 (0)