huspy-icons 0.3.1 → 0.3.3

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.
@@ -78,8 +78,12 @@ declare const SvgEyeHidden: ({ size, ...props }: ReactIconProps) => React$1.JSX.
78
78
 
79
79
  declare const SvgEyeVisible: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
80
80
 
81
+ declare const SvgFaceId: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
82
+
81
83
  declare const SvgFileCheck: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
82
84
 
85
+ declare const SvgFileInput: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
86
+
83
87
  declare const SvgFileKey: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
84
88
 
85
89
  declare const SvgFileLock: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
@@ -90,6 +94,8 @@ declare const SvgFileSpreadsheet: ({ size, ...props }: ReactIconProps) => React$
90
94
 
91
95
  declare const SvgFileText: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
92
96
 
97
+ declare const SvgFingerprintAndroid: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
98
+
93
99
  declare const SvgHelpCircle: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
94
100
 
95
101
  declare const SvgHomeFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
@@ -120,6 +126,8 @@ declare const SvgPayments: ({ size, ...props }: ReactIconProps) => React$1.JSX.E
120
126
 
121
127
  declare const SvgPlus: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
122
128
 
129
+ declare const SvgPromotion: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
130
+
123
131
  declare const SvgPropertiesFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
124
132
 
125
133
  declare const SvgPropertiesLinear: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
@@ -149,7 +157,7 @@ declare const SvgWhatsapp: ({ size, ...props }: ReactIconProps) => React$1.JSX.E
149
157
  /**
150
158
  * Available icon names
151
159
  */
152
- 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' | 'bed-double' | 'bell' | 'building' | '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-signature' | 'file-spreadsheet' | 'file-text' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lock' | 'logout' | 'mail' | 'map-pin' | 'mortgage' | 'note' | 'payments' | 'plus' | 'properties-filled' | 'properties-linear' | 'rent' | 'sale' | 'search' | 'search-x' | 'share' | 'size3d' | 'trash2' | 'user' | 'whatsapp';
160
+ 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' | 'bed-double' | 'bell' | 'building' | 'cancel' | 'cancel-circle-solid' | 'check' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'edit' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'face-id' | 'file-check' | 'file-input' | 'file-key' | 'file-lock' | 'file-signature' | 'file-spreadsheet' | 'file-text' | 'fingerprint-android' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lock' | 'logout' | 'mail' | 'map-pin' | 'mortgage' | 'note' | 'payments' | 'plus' | 'promotion' | 'properties-filled' | 'properties-linear' | 'rent' | 'sale' | 'search' | 'search-x' | 'share' | 'size3d' | 'trash2' | 'user' | 'whatsapp';
153
161
  /**
154
162
  * Props for the unified Icon component
155
163
  */
@@ -164,4 +172,4 @@ interface IconProps extends Omit<ReactIconProps, 'size'> {
164
172
  */
165
173
  declare const Icon: ({ name, size, color, ...props }: IconProps) => React$1.JSX.Element | null;
166
174
 
167
- 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, SvgBedDouble as BedDouble, SvgBell as Bell, SvgBuilding as Building, 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, SvgFileSignature as FileSignature, SvgFileSpreadsheet as FileSpreadsheet, SvgFileText as FileText, 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, SvgMapPin as MapPin, SvgMortgage as Mortgage, SvgNote as Note, SvgPayments as Payments, SvgPlus as Plus, SvgPropertiesFilled as PropertiesFilled, SvgPropertiesLinear as PropertiesLinear, type ReactIconProps, SvgRent as Rent, SvgSale as Sale, SvgSearch as Search, SvgSearchX as SearchX, SvgShare as Share, SvgSize3D as Size3D, SvgTrash2 as Trash2, SvgUser as User, SvgWhatsapp as Whatsapp, resolveSize };
175
+ 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, SvgBedDouble as BedDouble, SvgBell as Bell, SvgBuilding as Building, 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, SvgFaceId as FaceId, SvgFileCheck as FileCheck, SvgFileInput as FileInput, SvgFileKey as FileKey, SvgFileLock as FileLock, SvgFileSignature as FileSignature, SvgFileSpreadsheet as FileSpreadsheet, SvgFileText as FileText, SvgFingerprintAndroid as FingerprintAndroid, 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, SvgMapPin as MapPin, SvgMortgage as Mortgage, SvgNote as Note, SvgPayments as Payments, SvgPlus as Plus, SvgPromotion as Promotion, SvgPropertiesFilled as PropertiesFilled, SvgPropertiesLinear as PropertiesLinear, type ReactIconProps, SvgRent as Rent, SvgSale as Sale, SvgSearch as Search, SvgSearchX as SearchX, SvgShare as Share, SvgSize3D as Size3D, SvgTrash2 as Trash2, SvgUser as User, SvgWhatsapp as Whatsapp, resolveSize };
@@ -78,8 +78,12 @@ declare const SvgEyeHidden: ({ size, ...props }: ReactIconProps) => React$1.JSX.
78
78
 
79
79
  declare const SvgEyeVisible: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
80
80
 
81
+ declare const SvgFaceId: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
82
+
81
83
  declare const SvgFileCheck: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
82
84
 
85
+ declare const SvgFileInput: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
86
+
83
87
  declare const SvgFileKey: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
84
88
 
85
89
  declare const SvgFileLock: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
@@ -90,6 +94,8 @@ declare const SvgFileSpreadsheet: ({ size, ...props }: ReactIconProps) => React$
90
94
 
91
95
  declare const SvgFileText: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
92
96
 
97
+ declare const SvgFingerprintAndroid: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
98
+
93
99
  declare const SvgHelpCircle: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
94
100
 
95
101
  declare const SvgHomeFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
@@ -120,6 +126,8 @@ declare const SvgPayments: ({ size, ...props }: ReactIconProps) => React$1.JSX.E
120
126
 
121
127
  declare const SvgPlus: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
122
128
 
129
+ declare const SvgPromotion: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
130
+
123
131
  declare const SvgPropertiesFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
124
132
 
125
133
  declare const SvgPropertiesLinear: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
@@ -149,7 +157,7 @@ declare const SvgWhatsapp: ({ size, ...props }: ReactIconProps) => React$1.JSX.E
149
157
  /**
150
158
  * Available icon names
151
159
  */
152
- 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' | 'bed-double' | 'bell' | 'building' | '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-signature' | 'file-spreadsheet' | 'file-text' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lock' | 'logout' | 'mail' | 'map-pin' | 'mortgage' | 'note' | 'payments' | 'plus' | 'properties-filled' | 'properties-linear' | 'rent' | 'sale' | 'search' | 'search-x' | 'share' | 'size3d' | 'trash2' | 'user' | 'whatsapp';
160
+ 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' | 'bed-double' | 'bell' | 'building' | 'cancel' | 'cancel-circle-solid' | 'check' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'edit' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'face-id' | 'file-check' | 'file-input' | 'file-key' | 'file-lock' | 'file-signature' | 'file-spreadsheet' | 'file-text' | 'fingerprint-android' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lock' | 'logout' | 'mail' | 'map-pin' | 'mortgage' | 'note' | 'payments' | 'plus' | 'promotion' | 'properties-filled' | 'properties-linear' | 'rent' | 'sale' | 'search' | 'search-x' | 'share' | 'size3d' | 'trash2' | 'user' | 'whatsapp';
153
161
  /**
154
162
  * Props for the unified Icon component
155
163
  */
@@ -164,4 +172,4 @@ interface IconProps extends Omit<ReactIconProps, 'size'> {
164
172
  */
165
173
  declare const Icon: ({ name, size, color, ...props }: IconProps) => React$1.JSX.Element | null;
166
174
 
167
- 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, SvgBedDouble as BedDouble, SvgBell as Bell, SvgBuilding as Building, 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, SvgFileSignature as FileSignature, SvgFileSpreadsheet as FileSpreadsheet, SvgFileText as FileText, 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, SvgMapPin as MapPin, SvgMortgage as Mortgage, SvgNote as Note, SvgPayments as Payments, SvgPlus as Plus, SvgPropertiesFilled as PropertiesFilled, SvgPropertiesLinear as PropertiesLinear, type ReactIconProps, SvgRent as Rent, SvgSale as Sale, SvgSearch as Search, SvgSearchX as SearchX, SvgShare as Share, SvgSize3D as Size3D, SvgTrash2 as Trash2, SvgUser as User, SvgWhatsapp as Whatsapp, resolveSize };
175
+ 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, SvgBedDouble as BedDouble, SvgBell as Bell, SvgBuilding as Building, 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, SvgFaceId as FaceId, SvgFileCheck as FileCheck, SvgFileInput as FileInput, SvgFileKey as FileKey, SvgFileLock as FileLock, SvgFileSignature as FileSignature, SvgFileSpreadsheet as FileSpreadsheet, SvgFileText as FileText, SvgFingerprintAndroid as FingerprintAndroid, 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, SvgMapPin as MapPin, SvgMortgage as Mortgage, SvgNote as Note, SvgPayments as Payments, SvgPlus as Plus, SvgPromotion as Promotion, SvgPropertiesFilled as PropertiesFilled, SvgPropertiesLinear as PropertiesLinear, type ReactIconProps, SvgRent as Rent, SvgSale as Sale, SvgSearch as Search, SvgSearchX as SearchX, SvgShare as Share, SvgSize3D as Size3D, SvgTrash2 as Trash2, SvgUser as User, SvgWhatsapp as Whatsapp, resolveSize };