huspy-icons 0.2.0 → 0.2.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/dist/fonts/HuspyIcons.css +13 -10
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +7 -6
- package/dist/fonts/HuspyIcons.ts +9 -6
- package/dist/fonts/HuspyIcons.ttf +0 -0
- package/dist/fonts/HuspyIcons.woff +0 -0
- package/dist/fonts/HuspyIcons.woff2 +0 -0
- package/dist/native/index.d.ts +1 -1
- package/dist/native/index.js +7 -6
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +4 -2
- package/dist/react/index.d.ts +4 -2
- package/dist/react/index.js +307 -238
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +265 -196
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +8 -7
- package/src/react/ArrowUpDown.tsx +44 -0
- package/src/react/Icon.tsx +4 -1
- package/src/react/index.ts +1 -0
- package/src/react/index.tsx +1 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: "HuspyIcons";
|
|
3
|
-
src: url(".//HuspyIcons.ttf?
|
|
4
|
-
url(".//HuspyIcons.woff?
|
|
5
|
-
url(".//HuspyIcons.woff2?
|
|
6
|
-
url(".//HuspyIcons.eot?
|
|
3
|
+
src: url(".//HuspyIcons.ttf?2629d9e33b1dbaa8b2c071762b9b509f") format("truetype"),
|
|
4
|
+
url(".//HuspyIcons.woff?2629d9e33b1dbaa8b2c071762b9b509f") format("woff"),
|
|
5
|
+
url(".//HuspyIcons.woff2?2629d9e33b1dbaa8b2c071762b9b509f") format("woff2"),
|
|
6
|
+
url(".//HuspyIcons.eot?2629d9e33b1dbaa8b2c071762b9b509f#iefix") format("embedded-opentype");
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.icon:before {
|
|
@@ -146,21 +146,24 @@ url(".//HuspyIcons.eot?bd84494d807bc2135cc1ca5fe1274826#iefix") format("embedded
|
|
|
146
146
|
.icon.huspy-icon-arrow-up-left:before {
|
|
147
147
|
content: "\f12b";
|
|
148
148
|
}
|
|
149
|
-
.icon.huspy-icon-arrow-
|
|
149
|
+
.icon.huspy-icon-arrow-up-down:before {
|
|
150
150
|
content: "\f12c";
|
|
151
151
|
}
|
|
152
|
-
.icon.huspy-icon-arrow-
|
|
152
|
+
.icon.huspy-icon-arrow-right:before {
|
|
153
153
|
content: "\f12d";
|
|
154
154
|
}
|
|
155
|
-
.icon.huspy-icon-arrow-
|
|
155
|
+
.icon.huspy-icon-arrow-left:before {
|
|
156
156
|
content: "\f12e";
|
|
157
157
|
}
|
|
158
|
-
.icon.huspy-icon-arrow-down
|
|
158
|
+
.icon.huspy-icon-arrow-down:before {
|
|
159
159
|
content: "\f12f";
|
|
160
160
|
}
|
|
161
|
-
.icon.huspy-icon-arrow-down-
|
|
161
|
+
.icon.huspy-icon-arrow-down-right:before {
|
|
162
162
|
content: "\f130";
|
|
163
163
|
}
|
|
164
|
-
.icon.huspy-icon-
|
|
164
|
+
.icon.huspy-icon-arrow-down-left:before {
|
|
165
165
|
content: "\f131";
|
|
166
166
|
}
|
|
167
|
+
.icon.huspy-icon-alert-triangle:before {
|
|
168
|
+
content: "\f132";
|
|
169
|
+
}
|
|
Binary file
|
|
@@ -42,10 +42,11 @@
|
|
|
42
42
|
"arrow-up": 61737,
|
|
43
43
|
"arrow-up-right": 61738,
|
|
44
44
|
"arrow-up-left": 61739,
|
|
45
|
-
"arrow-
|
|
46
|
-
"arrow-
|
|
47
|
-
"arrow-
|
|
48
|
-
"arrow-down
|
|
49
|
-
"arrow-down-
|
|
50
|
-
"
|
|
45
|
+
"arrow-up-down": 61740,
|
|
46
|
+
"arrow-right": 61741,
|
|
47
|
+
"arrow-left": 61742,
|
|
48
|
+
"arrow-down": 61743,
|
|
49
|
+
"arrow-down-right": 61744,
|
|
50
|
+
"arrow-down-left": 61745,
|
|
51
|
+
"alert-triangle": 61746
|
|
51
52
|
}
|
package/dist/fonts/HuspyIcons.ts
CHANGED
|
@@ -42,6 +42,7 @@ export type HuspyIconsId =
|
|
|
42
42
|
| "arrow-up"
|
|
43
43
|
| "arrow-up-right"
|
|
44
44
|
| "arrow-up-left"
|
|
45
|
+
| "arrow-up-down"
|
|
45
46
|
| "arrow-right"
|
|
46
47
|
| "arrow-left"
|
|
47
48
|
| "arrow-down"
|
|
@@ -93,6 +94,7 @@ export enum HuspyIcons {
|
|
|
93
94
|
ArrowUp = "arrow-up",
|
|
94
95
|
ArrowUpRight = "arrow-up-right",
|
|
95
96
|
ArrowUpLeft = "arrow-up-left",
|
|
97
|
+
ArrowUpDown = "arrow-up-down",
|
|
96
98
|
ArrowRight = "arrow-right",
|
|
97
99
|
ArrowLeft = "arrow-left",
|
|
98
100
|
ArrowDown = "arrow-down",
|
|
@@ -145,10 +147,11 @@ export const HUSPY_ICONS_CODEPOINTS: { [key in HuspyIcons]: string } = {
|
|
|
145
147
|
[HuspyIcons.ArrowUp]: "61737",
|
|
146
148
|
[HuspyIcons.ArrowUpRight]: "61738",
|
|
147
149
|
[HuspyIcons.ArrowUpLeft]: "61739",
|
|
148
|
-
[HuspyIcons.
|
|
149
|
-
[HuspyIcons.
|
|
150
|
-
[HuspyIcons.
|
|
151
|
-
[HuspyIcons.
|
|
152
|
-
[HuspyIcons.
|
|
153
|
-
[HuspyIcons.
|
|
150
|
+
[HuspyIcons.ArrowUpDown]: "61740",
|
|
151
|
+
[HuspyIcons.ArrowRight]: "61741",
|
|
152
|
+
[HuspyIcons.ArrowLeft]: "61742",
|
|
153
|
+
[HuspyIcons.ArrowDown]: "61743",
|
|
154
|
+
[HuspyIcons.ArrowDownRight]: "61744",
|
|
155
|
+
[HuspyIcons.ArrowDownLeft]: "61745",
|
|
156
|
+
[HuspyIcons.AlertTriangle]: "61746",
|
|
154
157
|
};
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/native/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { TextProps } from 'react-native';
|
|
|
4
4
|
/**
|
|
5
5
|
* Available icon names in the HuspyIcons font
|
|
6
6
|
*/
|
|
7
|
-
type IconName = 'whatsapp' | 'user' | 'trash-2' | 'share' | 'search' | 'search-x' | 'rent' | 'properties-linear' | 'properties-filled' | 'plus' | 'payments' | 'note' | 'mortgage' | 'mail' | 'logout' | 'lock' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | 'file-spreadsheet' | 'file-lock' | 'file-key' | 'file-check' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'edit' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'cancel' | 'cancel-circle-solid' | 'bell' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'alert-triangle';
|
|
7
|
+
type IconName = 'whatsapp' | 'user' | 'trash-2' | 'share' | 'search' | 'search-x' | 'rent' | 'properties-linear' | 'properties-filled' | 'plus' | 'payments' | 'note' | 'mortgage' | 'mail' | 'logout' | 'lock' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | 'file-spreadsheet' | 'file-lock' | 'file-key' | 'file-check' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'edit' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'cancel' | 'cancel-circle-solid' | 'bell' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-up-down' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'alert-triangle';
|
|
8
8
|
/**
|
|
9
9
|
* Mapping of icon names to unicode codepoints
|
|
10
10
|
* Used by the Icon component to render the correct glyph
|
package/dist/native/index.js
CHANGED
|
@@ -85,12 +85,13 @@ var glyphMap = {
|
|
|
85
85
|
"arrow-up": 61737,
|
|
86
86
|
"arrow-up-right": 61738,
|
|
87
87
|
"arrow-up-left": 61739,
|
|
88
|
-
"arrow-
|
|
89
|
-
"arrow-
|
|
90
|
-
"arrow-
|
|
91
|
-
"arrow-down
|
|
92
|
-
"arrow-down-
|
|
93
|
-
"
|
|
88
|
+
"arrow-up-down": 61740,
|
|
89
|
+
"arrow-right": 61741,
|
|
90
|
+
"arrow-left": 61742,
|
|
91
|
+
"arrow-down": 61743,
|
|
92
|
+
"arrow-down-right": 61744,
|
|
93
|
+
"arrow-down-left": 61745,
|
|
94
|
+
"alert-triangle": 61746
|
|
94
95
|
};
|
|
95
96
|
var fontFamily = "HuspyIcons";
|
|
96
97
|
|
package/dist/native/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/native/index.ts","../../src/native/Icon.tsx","../../src/native/glyphMap.ts"],"sourcesContent":["/**\n * Huspy Icons - React Native (Font-based)\n * \n * This package provides icon components for React Native using a custom font.\n * \n * @example\n * ```tsx\n * import { Icon } from 'huspy-icons/native';\n * \n * function MyComponent() {\n * return <Icon name=\"arrow-left\" size={24} color=\"#000\" />;\n * }\n * ```\n */\n\nexport { default as Icon } from './Icon';\nexport type { IconProps, IconName } from './Icon';\nexport { glyphMap, fontFamily } from './glyphMap';\n\n","import * as React from 'react';\nimport { Text, TextProps } from 'react-native';\nimport { glyphMap, fontFamily, IconName } from './glyphMap';\n\n/**\n * Props for the Icon component (React Native)\n */\nexport interface IconProps extends Omit<TextProps, 'children'> {\n /**\n * Name of the icon to display\n */\n name: IconName;\n\n /**\n * Size of the icon (default: 16)\n */\n size?: number;\n\n /**\n * Color of the icon (default: inherits from parent or 'black')\n */\n color?: string;\n}\n\n/**\n * Icon component for React Native\n *\n * Renders icons using a custom font (HuspyIcons)\n *\n * @example\n * ```tsx\n * <Icon name=\"arrow-left\" size={24} color=\"#000\" />\n * ```\n */\nconst Icon = ({ name, size = 16, color = '#000', style, ...props }: IconProps) => {\n const codepoint = glyphMap[name];\n\n if (!codepoint) {\n if (__DEV__) {\n console.warn(`Icon \"${name}\" not found in HuspyIcons font`);\n }\n return null;\n }\n\n // Convert codepoint to character\n const glyph = String.fromCharCode(codepoint);\n\n return (\n <Text\n {...props}\n style={[\n {\n fontFamily: fontFamily,\n fontSize: size,\n color: color,\n // Ensure icon doesn't inherit text styles\n fontWeight: 'normal',\n fontStyle: 'normal',\n // Prevent text selection and ensure proper rendering\n includeFontPadding: false, // Android: removes extra padding\n textAlignVertical: 'center', // Android: centers the glyph vertically\n },\n style,\n ]}\n // Accessibility\n accessible\n accessibilityLabel={props.accessibilityLabel || name}\n accessibilityRole=\"image\"\n >\n {glyph}\n </Text>\n );\n};\n\nexport default Icon;\nexport type { IconName };\n","// Auto-generated by generate-font.js - do not edit manually\n// Source: icons-src/*.svg → dist/fonts/HuspyIcons.*\n\n/**\n * Available icon names in the HuspyIcons font\n */\nexport type IconName = 'whatsapp' | 'user' | 'trash-2' | 'share' | 'search' | 'search-x' | 'rent' | 'properties-linear' | 'properties-filled' | 'plus' | 'payments' | 'note' | 'mortgage' | 'mail' | 'logout' | 'lock' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | 'file-spreadsheet' | 'file-lock' | 'file-key' | 'file-check' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'edit' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'cancel' | 'cancel-circle-solid' | 'bell' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'alert-triangle';\n\n/**\n * Mapping of icon names to unicode codepoints\n * Used by the Icon component to render the correct glyph\n */\nexport const glyphMap: Record<IconName, number> = {\n \"whatsapp\": 61697,\n \"user\": 61698,\n \"trash-2\": 61699,\n \"share\": 61700,\n \"search\": 61701,\n \"search-x\": 61702,\n \"rent\": 61703,\n \"properties-linear\": 61704,\n \"properties-filled\": 61705,\n \"plus\": 61706,\n \"payments\": 61707,\n \"note\": 61708,\n \"mortgage\": 61709,\n \"mail\": 61710,\n \"logout\": 61711,\n \"lock\": 61712,\n \"leads-linear\": 61713,\n \"leads-filled\": 61714,\n \"keys_01\": 61715,\n \"icon-slot\": 61716,\n \"home-linear\": 61717,\n \"home-filled\": 61718,\n \"help-circle\": 61719,\n \"file-spreadsheet\": 61720,\n \"file-lock\": 61721,\n \"file-key\": 61722,\n \"file-check\": 61723,\n \"eye-visible\": 61724,\n \"eye-hidden\": 61725,\n \"explore-linear\": 61726,\n \"explore-filled\": 61727,\n \"edit\": 61728,\n \"chevron-up\": 61729,\n \"chevron-right\": 61730,\n \"chevron-left\": 61731,\n \"chevron-down\": 61732,\n \"check\": 61733,\n \"cancel\": 61734,\n \"cancel-circle-solid\": 61735,\n \"bell\": 61736,\n \"arrow-up\": 61737,\n \"arrow-up-right\": 61738,\n \"arrow-up-left\": 61739,\n \"arrow-
|
|
1
|
+
{"version":3,"sources":["../../src/native/index.ts","../../src/native/Icon.tsx","../../src/native/glyphMap.ts"],"sourcesContent":["/**\n * Huspy Icons - React Native (Font-based)\n * \n * This package provides icon components for React Native using a custom font.\n * \n * @example\n * ```tsx\n * import { Icon } from 'huspy-icons/native';\n * \n * function MyComponent() {\n * return <Icon name=\"arrow-left\" size={24} color=\"#000\" />;\n * }\n * ```\n */\n\nexport { default as Icon } from './Icon';\nexport type { IconProps, IconName } from './Icon';\nexport { glyphMap, fontFamily } from './glyphMap';\n\n","import * as React from 'react';\nimport { Text, TextProps } from 'react-native';\nimport { glyphMap, fontFamily, IconName } from './glyphMap';\n\n/**\n * Props for the Icon component (React Native)\n */\nexport interface IconProps extends Omit<TextProps, 'children'> {\n /**\n * Name of the icon to display\n */\n name: IconName;\n\n /**\n * Size of the icon (default: 16)\n */\n size?: number;\n\n /**\n * Color of the icon (default: inherits from parent or 'black')\n */\n color?: string;\n}\n\n/**\n * Icon component for React Native\n *\n * Renders icons using a custom font (HuspyIcons)\n *\n * @example\n * ```tsx\n * <Icon name=\"arrow-left\" size={24} color=\"#000\" />\n * ```\n */\nconst Icon = ({ name, size = 16, color = '#000', style, ...props }: IconProps) => {\n const codepoint = glyphMap[name];\n\n if (!codepoint) {\n if (__DEV__) {\n console.warn(`Icon \"${name}\" not found in HuspyIcons font`);\n }\n return null;\n }\n\n // Convert codepoint to character\n const glyph = String.fromCharCode(codepoint);\n\n return (\n <Text\n {...props}\n style={[\n {\n fontFamily: fontFamily,\n fontSize: size,\n color: color,\n // Ensure icon doesn't inherit text styles\n fontWeight: 'normal',\n fontStyle: 'normal',\n // Prevent text selection and ensure proper rendering\n includeFontPadding: false, // Android: removes extra padding\n textAlignVertical: 'center', // Android: centers the glyph vertically\n },\n style,\n ]}\n // Accessibility\n accessible\n accessibilityLabel={props.accessibilityLabel || name}\n accessibilityRole=\"image\"\n >\n {glyph}\n </Text>\n );\n};\n\nexport default Icon;\nexport type { IconName };\n","// Auto-generated by generate-font.js - do not edit manually\n// Source: icons-src/*.svg → dist/fonts/HuspyIcons.*\n\n/**\n * Available icon names in the HuspyIcons font\n */\nexport type IconName = 'whatsapp' | 'user' | 'trash-2' | 'share' | 'search' | 'search-x' | 'rent' | 'properties-linear' | 'properties-filled' | 'plus' | 'payments' | 'note' | 'mortgage' | 'mail' | 'logout' | 'lock' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | 'file-spreadsheet' | 'file-lock' | 'file-key' | 'file-check' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'edit' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'cancel' | 'cancel-circle-solid' | 'bell' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-up-down' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'alert-triangle';\n\n/**\n * Mapping of icon names to unicode codepoints\n * Used by the Icon component to render the correct glyph\n */\nexport const glyphMap: Record<IconName, number> = {\n \"whatsapp\": 61697,\n \"user\": 61698,\n \"trash-2\": 61699,\n \"share\": 61700,\n \"search\": 61701,\n \"search-x\": 61702,\n \"rent\": 61703,\n \"properties-linear\": 61704,\n \"properties-filled\": 61705,\n \"plus\": 61706,\n \"payments\": 61707,\n \"note\": 61708,\n \"mortgage\": 61709,\n \"mail\": 61710,\n \"logout\": 61711,\n \"lock\": 61712,\n \"leads-linear\": 61713,\n \"leads-filled\": 61714,\n \"keys_01\": 61715,\n \"icon-slot\": 61716,\n \"home-linear\": 61717,\n \"home-filled\": 61718,\n \"help-circle\": 61719,\n \"file-spreadsheet\": 61720,\n \"file-lock\": 61721,\n \"file-key\": 61722,\n \"file-check\": 61723,\n \"eye-visible\": 61724,\n \"eye-hidden\": 61725,\n \"explore-linear\": 61726,\n \"explore-filled\": 61727,\n \"edit\": 61728,\n \"chevron-up\": 61729,\n \"chevron-right\": 61730,\n \"chevron-left\": 61731,\n \"chevron-down\": 61732,\n \"check\": 61733,\n \"cancel\": 61734,\n \"cancel-circle-solid\": 61735,\n \"bell\": 61736,\n \"arrow-up\": 61737,\n \"arrow-up-right\": 61738,\n \"arrow-up-left\": 61739,\n \"arrow-up-down\": 61740,\n \"arrow-right\": 61741,\n \"arrow-left\": 61742,\n \"arrow-down\": 61743,\n \"arrow-down-right\": 61744,\n \"arrow-down-left\": 61745,\n \"alert-triangle\": 61746\n};\n\n/**\n * Font family name for React Native\n */\nexport const fontFamily = 'HuspyIcons';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,YAAuB;AACvB,0BAAgC;;;ACWzB,IAAM,WAAqC;AAAA,EAChD,YAAY;AAAA,EACZ,QAAQ;AAAA,EACR,WAAW;AAAA,EACX,SAAS;AAAA,EACT,UAAU;AAAA,EACV,YAAY;AAAA,EACZ,QAAQ;AAAA,EACR,qBAAqB;AAAA,EACrB,qBAAqB;AAAA,EACrB,QAAQ;AAAA,EACR,YAAY;AAAA,EACZ,QAAQ;AAAA,EACR,YAAY;AAAA,EACZ,QAAQ;AAAA,EACR,UAAU;AAAA,EACV,QAAQ;AAAA,EACR,gBAAgB;AAAA,EAChB,gBAAgB;AAAA,EAChB,WAAW;AAAA,EACX,aAAa;AAAA,EACb,eAAe;AAAA,EACf,eAAe;AAAA,EACf,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,aAAa;AAAA,EACb,YAAY;AAAA,EACZ,cAAc;AAAA,EACd,eAAe;AAAA,EACf,cAAc;AAAA,EACd,kBAAkB;AAAA,EAClB,kBAAkB;AAAA,EAClB,QAAQ;AAAA,EACR,cAAc;AAAA,EACd,iBAAiB;AAAA,EACjB,gBAAgB;AAAA,EAChB,gBAAgB;AAAA,EAChB,SAAS;AAAA,EACT,UAAU;AAAA,EACV,uBAAuB;AAAA,EACvB,QAAQ;AAAA,EACR,YAAY;AAAA,EACZ,kBAAkB;AAAA,EAClB,iBAAiB;AAAA,EACjB,iBAAiB;AAAA,EACjB,eAAe;AAAA,EACf,cAAc;AAAA,EACd,cAAc;AAAA,EACd,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,kBAAkB;AACpB;AAKO,IAAM,aAAa;;;ADlC1B,IAAM,OAAO,CAAC,EAAE,MAAM,OAAO,IAAI,QAAQ,QAAQ,OAAO,GAAG,MAAM,MAAiB;AAChF,QAAM,YAAY,SAAS,IAAI;AAE/B,MAAI,CAAC,WAAW;AACd,QAAI,SAAS;AACX,cAAQ,KAAK,SAAS,IAAI,gCAAgC;AAAA,IAC5D;AACA,WAAO;AAAA,EACT;AAGA,QAAM,QAAQ,OAAO,aAAa,SAAS;AAE3C,SACE;AAAA,IAAC;AAAA;AAAA,MACE,GAAG;AAAA,MACJ,OAAO;AAAA,QACL;AAAA,UACE;AAAA,UACA,UAAU;AAAA,UACV;AAAA;AAAA,UAEA,YAAY;AAAA,UACZ,WAAW;AAAA;AAAA,UAEX,oBAAoB;AAAA;AAAA,UACpB,mBAAmB;AAAA;AAAA,QACrB;AAAA,QACA;AAAA,MACF;AAAA,MAEA,YAAU;AAAA,MACV,oBAAoB,MAAM,sBAAsB;AAAA,MAChD,mBAAkB;AAAA;AAAA,IAEjB;AAAA,EACH;AAEJ;AAEA,IAAO,eAAQ;","names":[]}
|
package/dist/react/index.d.mts
CHANGED
|
@@ -42,6 +42,8 @@ declare const SvgArrowRight: ({ size, ...props }: ReactIconProps) => React$1.JSX
|
|
|
42
42
|
|
|
43
43
|
declare const SvgArrowUp: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
44
44
|
|
|
45
|
+
declare const SvgArrowUpDown: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
46
|
+
|
|
45
47
|
declare const SvgArrowUpLeft: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
46
48
|
|
|
47
49
|
declare const SvgArrowUpRight: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
@@ -133,7 +135,7 @@ declare const SvgWhatsapp: ({ size, ...props }: ReactIconProps) => React$1.JSX.E
|
|
|
133
135
|
/**
|
|
134
136
|
* Available icon names
|
|
135
137
|
*/
|
|
136
|
-
type IconName = 'alert-triangle' | 'arrow-down' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'arrow-up-left' | 'arrow-up-right' | 'bell' | 'cancel' | 'cancel-circle-solid' | 'check' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'edit' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'file-check' | 'file-key' | 'file-lock' | 'file-spreadsheet' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lock' | 'logout' | 'mail' | 'mortgage' | 'note' | 'payments' | 'plus' | 'properties-filled' | 'properties-linear' | 'rent' | 'search' | 'search-x' | 'share' | 'trash2' | 'user' | 'whatsapp';
|
|
138
|
+
type IconName = 'alert-triangle' | 'arrow-down' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'arrow-up-down' | 'arrow-up-left' | 'arrow-up-right' | 'bell' | 'cancel' | 'cancel-circle-solid' | 'check' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'edit' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'file-check' | 'file-key' | 'file-lock' | 'file-spreadsheet' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lock' | 'logout' | 'mail' | 'mortgage' | 'note' | 'payments' | 'plus' | 'properties-filled' | 'properties-linear' | 'rent' | 'search' | 'search-x' | 'share' | 'trash2' | 'user' | 'whatsapp';
|
|
137
139
|
/**
|
|
138
140
|
* Props for the unified Icon component
|
|
139
141
|
*/
|
|
@@ -148,4 +150,4 @@ interface IconProps extends Omit<ReactIconProps, 'size'> {
|
|
|
148
150
|
*/
|
|
149
151
|
declare const Icon: ({ name, size, color, ...props }: IconProps) => React$1.JSX.Element | null;
|
|
150
152
|
|
|
151
|
-
export { SvgAlertTriangle as AlertTriangle, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgBell as Bell, SvgCancel as Cancel, SvgCancelCircleSolid as CancelCircleSolid, SvgCheck as Check, SvgChevronDown as ChevronDown, SvgChevronLeft as ChevronLeft, SvgChevronRight as ChevronRight, SvgChevronUp as ChevronUp, SvgEdit as Edit, SvgExploreFilled as ExploreFilled, SvgExploreLinear as ExploreLinear, SvgEyeHidden as EyeHidden, SvgEyeVisible as EyeVisible, SvgFileCheck as FileCheck, SvgFileKey as FileKey, SvgFileLock as FileLock, SvgFileSpreadsheet as FileSpreadsheet, SvgHelpCircle as HelpCircle, SvgHomeFilled as HomeFilled, SvgHomeLinear as HomeLinear, ICON_SIZES, Icon, type IconName, type IconProps, type IconSize, type IconSizeToken, SvgIconSlot as IconSlot, SvgKeys01 as Keys01, SvgLeadsFilled as LeadsFilled, SvgLeadsLinear as LeadsLinear, SvgLock as Lock, SvgLogout as Logout, SvgMail as Mail, SvgMortgage as Mortgage, SvgNote as Note, SvgPayments as Payments, SvgPlus as Plus, SvgPropertiesFilled as PropertiesFilled, SvgPropertiesLinear as PropertiesLinear, type ReactIconProps, SvgRent as Rent, SvgSearch as Search, SvgSearchX as SearchX, SvgShare as Share, SvgTrash2 as Trash2, SvgUser as User, SvgWhatsapp as Whatsapp, resolveSize };
|
|
153
|
+
export { SvgAlertTriangle as AlertTriangle, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpDown as ArrowUpDown, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgBell as Bell, SvgCancel as Cancel, SvgCancelCircleSolid as CancelCircleSolid, SvgCheck as Check, SvgChevronDown as ChevronDown, SvgChevronLeft as ChevronLeft, SvgChevronRight as ChevronRight, SvgChevronUp as ChevronUp, SvgEdit as Edit, SvgExploreFilled as ExploreFilled, SvgExploreLinear as ExploreLinear, SvgEyeHidden as EyeHidden, SvgEyeVisible as EyeVisible, SvgFileCheck as FileCheck, SvgFileKey as FileKey, SvgFileLock as FileLock, SvgFileSpreadsheet as FileSpreadsheet, SvgHelpCircle as HelpCircle, SvgHomeFilled as HomeFilled, SvgHomeLinear as HomeLinear, ICON_SIZES, Icon, type IconName, type IconProps, type IconSize, type IconSizeToken, SvgIconSlot as IconSlot, SvgKeys01 as Keys01, SvgLeadsFilled as LeadsFilled, SvgLeadsLinear as LeadsLinear, SvgLock as Lock, SvgLogout as Logout, SvgMail as Mail, SvgMortgage as Mortgage, SvgNote as Note, SvgPayments as Payments, SvgPlus as Plus, SvgPropertiesFilled as PropertiesFilled, SvgPropertiesLinear as PropertiesLinear, type ReactIconProps, SvgRent as Rent, SvgSearch as Search, SvgSearchX as SearchX, SvgShare as Share, SvgTrash2 as Trash2, SvgUser as User, SvgWhatsapp as Whatsapp, resolveSize };
|
package/dist/react/index.d.ts
CHANGED
|
@@ -42,6 +42,8 @@ declare const SvgArrowRight: ({ size, ...props }: ReactIconProps) => React$1.JSX
|
|
|
42
42
|
|
|
43
43
|
declare const SvgArrowUp: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
44
44
|
|
|
45
|
+
declare const SvgArrowUpDown: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
46
|
+
|
|
45
47
|
declare const SvgArrowUpLeft: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
46
48
|
|
|
47
49
|
declare const SvgArrowUpRight: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
@@ -133,7 +135,7 @@ declare const SvgWhatsapp: ({ size, ...props }: ReactIconProps) => React$1.JSX.E
|
|
|
133
135
|
/**
|
|
134
136
|
* Available icon names
|
|
135
137
|
*/
|
|
136
|
-
type IconName = 'alert-triangle' | 'arrow-down' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'arrow-up-left' | 'arrow-up-right' | 'bell' | 'cancel' | 'cancel-circle-solid' | 'check' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'edit' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'file-check' | 'file-key' | 'file-lock' | 'file-spreadsheet' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lock' | 'logout' | 'mail' | 'mortgage' | 'note' | 'payments' | 'plus' | 'properties-filled' | 'properties-linear' | 'rent' | 'search' | 'search-x' | 'share' | 'trash2' | 'user' | 'whatsapp';
|
|
138
|
+
type IconName = 'alert-triangle' | 'arrow-down' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'arrow-up-down' | 'arrow-up-left' | 'arrow-up-right' | 'bell' | 'cancel' | 'cancel-circle-solid' | 'check' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'edit' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'file-check' | 'file-key' | 'file-lock' | 'file-spreadsheet' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lock' | 'logout' | 'mail' | 'mortgage' | 'note' | 'payments' | 'plus' | 'properties-filled' | 'properties-linear' | 'rent' | 'search' | 'search-x' | 'share' | 'trash2' | 'user' | 'whatsapp';
|
|
137
139
|
/**
|
|
138
140
|
* Props for the unified Icon component
|
|
139
141
|
*/
|
|
@@ -148,4 +150,4 @@ interface IconProps extends Omit<ReactIconProps, 'size'> {
|
|
|
148
150
|
*/
|
|
149
151
|
declare const Icon: ({ name, size, color, ...props }: IconProps) => React$1.JSX.Element | null;
|
|
150
152
|
|
|
151
|
-
export { SvgAlertTriangle as AlertTriangle, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgBell as Bell, SvgCancel as Cancel, SvgCancelCircleSolid as CancelCircleSolid, SvgCheck as Check, SvgChevronDown as ChevronDown, SvgChevronLeft as ChevronLeft, SvgChevronRight as ChevronRight, SvgChevronUp as ChevronUp, SvgEdit as Edit, SvgExploreFilled as ExploreFilled, SvgExploreLinear as ExploreLinear, SvgEyeHidden as EyeHidden, SvgEyeVisible as EyeVisible, SvgFileCheck as FileCheck, SvgFileKey as FileKey, SvgFileLock as FileLock, SvgFileSpreadsheet as FileSpreadsheet, SvgHelpCircle as HelpCircle, SvgHomeFilled as HomeFilled, SvgHomeLinear as HomeLinear, ICON_SIZES, Icon, type IconName, type IconProps, type IconSize, type IconSizeToken, SvgIconSlot as IconSlot, SvgKeys01 as Keys01, SvgLeadsFilled as LeadsFilled, SvgLeadsLinear as LeadsLinear, SvgLock as Lock, SvgLogout as Logout, SvgMail as Mail, SvgMortgage as Mortgage, SvgNote as Note, SvgPayments as Payments, SvgPlus as Plus, SvgPropertiesFilled as PropertiesFilled, SvgPropertiesLinear as PropertiesLinear, type ReactIconProps, SvgRent as Rent, SvgSearch as Search, SvgSearchX as SearchX, SvgShare as Share, SvgTrash2 as Trash2, SvgUser as User, SvgWhatsapp as Whatsapp, resolveSize };
|
|
153
|
+
export { SvgAlertTriangle as AlertTriangle, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpDown as ArrowUpDown, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgBell as Bell, SvgCancel as Cancel, SvgCancelCircleSolid as CancelCircleSolid, SvgCheck as Check, SvgChevronDown as ChevronDown, SvgChevronLeft as ChevronLeft, SvgChevronRight as ChevronRight, SvgChevronUp as ChevronUp, SvgEdit as Edit, SvgExploreFilled as ExploreFilled, SvgExploreLinear as ExploreLinear, SvgEyeHidden as EyeHidden, SvgEyeVisible as EyeVisible, SvgFileCheck as FileCheck, SvgFileKey as FileKey, SvgFileLock as FileLock, SvgFileSpreadsheet as FileSpreadsheet, SvgHelpCircle as HelpCircle, SvgHomeFilled as HomeFilled, SvgHomeLinear as HomeLinear, ICON_SIZES, Icon, type IconName, type IconProps, type IconSize, type IconSizeToken, SvgIconSlot as IconSlot, SvgKeys01 as Keys01, SvgLeadsFilled as LeadsFilled, SvgLeadsLinear as LeadsLinear, SvgLock as Lock, SvgLogout as Logout, SvgMail as Mail, SvgMortgage as Mortgage, SvgNote as Note, SvgPayments as Payments, SvgPlus as Plus, SvgPropertiesFilled as PropertiesFilled, SvgPropertiesLinear as PropertiesLinear, type ReactIconProps, SvgRent as Rent, SvgSearch as Search, SvgSearchX as SearchX, SvgShare as Share, SvgTrash2 as Trash2, SvgUser as User, SvgWhatsapp as Whatsapp, resolveSize };
|