@ctlyst.id/icons 2.5.0 → 2.6.0
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/v2.d.mts +31 -1
- package/dist/v2.d.ts +31 -1
- package/dist/v2.js +449 -103
- package/dist/v2.js.map +1 -1
- package/dist/v2.mjs +419 -88
- package/dist/v2.mjs.map +1 -1
- package/package.json +1 -1
package/dist/v2.d.mts
CHANGED
|
@@ -78,6 +78,8 @@ declare const Minus: FC<BaseIconProps>;
|
|
|
78
78
|
|
|
79
79
|
declare const MinusLarge: FC<BaseIconProps>;
|
|
80
80
|
|
|
81
|
+
declare const NoGps: FC<BaseIconProps>;
|
|
82
|
+
|
|
81
83
|
declare const OrderHistory: FC<BaseIconProps>;
|
|
82
84
|
|
|
83
85
|
declare const Otp: FC<BaseIconProps>;
|
|
@@ -92,6 +94,8 @@ declare const Profile: FC<BaseIconProps>;
|
|
|
92
94
|
|
|
93
95
|
declare const QRCode: FC<BaseIconProps>;
|
|
94
96
|
|
|
97
|
+
declare const QRCodeBase: FC<BaseIconProps>;
|
|
98
|
+
|
|
95
99
|
declare const Search: FC<BaseIconProps>;
|
|
96
100
|
|
|
97
101
|
declare const Setting: FC<BaseIconProps>;
|
|
@@ -104,18 +108,44 @@ declare const StoreComplete: FC<BaseIconProps>;
|
|
|
104
108
|
|
|
105
109
|
declare const TermConditions: FC<BaseIconProps>;
|
|
106
110
|
|
|
111
|
+
declare const Trash: FC<BaseIconProps>;
|
|
112
|
+
|
|
107
113
|
declare const Truck: FC<BaseIconProps>;
|
|
108
114
|
|
|
115
|
+
declare const BagSolid: FC<BaseIconProps>;
|
|
116
|
+
|
|
117
|
+
declare const CategorySolid: FC<BaseIconProps>;
|
|
118
|
+
|
|
119
|
+
declare const ChatCsSolid: FC<BaseIconProps>;
|
|
120
|
+
|
|
109
121
|
declare const Direction: FC<BaseIconProps>;
|
|
110
122
|
|
|
123
|
+
declare const EnvelopedSolid: FC<BaseIconProps>;
|
|
124
|
+
|
|
111
125
|
declare const Hand: FC<BaseIconProps>;
|
|
112
126
|
|
|
127
|
+
declare const HandphoneSolid: FC<BaseIconProps>;
|
|
128
|
+
|
|
129
|
+
declare const HeartSolid: FC<BaseIconProps>;
|
|
130
|
+
|
|
131
|
+
declare const HomeSolid: FC<BaseIconProps>;
|
|
132
|
+
|
|
133
|
+
declare const InfoSolid: FC<BaseIconProps>;
|
|
134
|
+
|
|
113
135
|
declare const MapMarkerSolid: FC<BaseIconProps>;
|
|
114
136
|
|
|
137
|
+
declare const ProfileSolid: FC<BaseIconProps>;
|
|
138
|
+
|
|
139
|
+
declare const SearchSolid: FC<BaseIconProps>;
|
|
140
|
+
|
|
141
|
+
declare const SettingSolid: FC<BaseIconProps>;
|
|
142
|
+
|
|
143
|
+
declare const TrashSolid: FC<BaseIconProps>;
|
|
144
|
+
|
|
115
145
|
declare const TrendUp: FC<BaseIconProps>;
|
|
116
146
|
|
|
117
147
|
declare const Voucher: FC<BaseIconProps>;
|
|
118
148
|
|
|
119
149
|
declare const Wallet: FC<BaseIconProps>;
|
|
120
150
|
|
|
121
|
-
export { ArrowLeft$1 as ArrowLeft, ArrowLeft as ArrowLeftLarge, ArrowRight$1 as ArrowRight, ArrowRight as ArrowRightLarge, Bag$1 as Bag, Calendar, CalendarEvent, Category, ChatCs, Check$1 as Check, Check as CheckLarge, ChevronUp$2 as ChevronDown, ChevronUp$1 as ChevronDownLarge, ChevronLeft, ChevronLeftLarge, ChevronRight, ChevronRightLarge, ChevronUp, ChevronUpLarge, Close, CloseLarge, ContactBook, Delivered, Direction, Edit, Enveloped, EyeClose, EyeOpen, Filter, Gps, Hand, Handphone, Heart, Home, Info, KebabMenu, Logout, MapMarker, MapMarkerSolid, Minus, MinusLarge, OrderHistory, Otp, Plus, PlusLarge, PrivacyPolicy, Profile, QRCode, Search, Setting, Bag as Share, Sort, StoreComplete, TermConditions, TrendUp, Truck, Voucher, Wallet };
|
|
151
|
+
export { ArrowLeft$1 as ArrowLeft, ArrowLeft as ArrowLeftLarge, ArrowRight$1 as ArrowRight, ArrowRight as ArrowRightLarge, Bag$1 as Bag, BagSolid, Calendar, CalendarEvent, Category, CategorySolid, ChatCs, ChatCsSolid, Check$1 as Check, Check as CheckLarge, ChevronUp$2 as ChevronDown, ChevronUp$1 as ChevronDownLarge, ChevronLeft, ChevronLeftLarge, ChevronRight, ChevronRightLarge, ChevronUp, ChevronUpLarge, Close, CloseLarge, ContactBook, Delivered, Direction, Edit, Enveloped, EnvelopedSolid, EyeClose, EyeOpen, Filter, Gps, Hand, Handphone, HandphoneSolid, Heart, HeartSolid, Home, HomeSolid, Info, InfoSolid, KebabMenu, Logout, MapMarker, MapMarkerSolid, Minus, MinusLarge, NoGps, OrderHistory, Otp, Plus, PlusLarge, PrivacyPolicy, Profile, ProfileSolid, QRCode, QRCodeBase, Search, SearchSolid, Setting, SettingSolid, Bag as Share, Sort, StoreComplete, TermConditions, Trash, TrashSolid, TrendUp, Truck, Voucher, Wallet };
|
package/dist/v2.d.ts
CHANGED
|
@@ -78,6 +78,8 @@ declare const Minus: FC<BaseIconProps>;
|
|
|
78
78
|
|
|
79
79
|
declare const MinusLarge: FC<BaseIconProps>;
|
|
80
80
|
|
|
81
|
+
declare const NoGps: FC<BaseIconProps>;
|
|
82
|
+
|
|
81
83
|
declare const OrderHistory: FC<BaseIconProps>;
|
|
82
84
|
|
|
83
85
|
declare const Otp: FC<BaseIconProps>;
|
|
@@ -92,6 +94,8 @@ declare const Profile: FC<BaseIconProps>;
|
|
|
92
94
|
|
|
93
95
|
declare const QRCode: FC<BaseIconProps>;
|
|
94
96
|
|
|
97
|
+
declare const QRCodeBase: FC<BaseIconProps>;
|
|
98
|
+
|
|
95
99
|
declare const Search: FC<BaseIconProps>;
|
|
96
100
|
|
|
97
101
|
declare const Setting: FC<BaseIconProps>;
|
|
@@ -104,18 +108,44 @@ declare const StoreComplete: FC<BaseIconProps>;
|
|
|
104
108
|
|
|
105
109
|
declare const TermConditions: FC<BaseIconProps>;
|
|
106
110
|
|
|
111
|
+
declare const Trash: FC<BaseIconProps>;
|
|
112
|
+
|
|
107
113
|
declare const Truck: FC<BaseIconProps>;
|
|
108
114
|
|
|
115
|
+
declare const BagSolid: FC<BaseIconProps>;
|
|
116
|
+
|
|
117
|
+
declare const CategorySolid: FC<BaseIconProps>;
|
|
118
|
+
|
|
119
|
+
declare const ChatCsSolid: FC<BaseIconProps>;
|
|
120
|
+
|
|
109
121
|
declare const Direction: FC<BaseIconProps>;
|
|
110
122
|
|
|
123
|
+
declare const EnvelopedSolid: FC<BaseIconProps>;
|
|
124
|
+
|
|
111
125
|
declare const Hand: FC<BaseIconProps>;
|
|
112
126
|
|
|
127
|
+
declare const HandphoneSolid: FC<BaseIconProps>;
|
|
128
|
+
|
|
129
|
+
declare const HeartSolid: FC<BaseIconProps>;
|
|
130
|
+
|
|
131
|
+
declare const HomeSolid: FC<BaseIconProps>;
|
|
132
|
+
|
|
133
|
+
declare const InfoSolid: FC<BaseIconProps>;
|
|
134
|
+
|
|
113
135
|
declare const MapMarkerSolid: FC<BaseIconProps>;
|
|
114
136
|
|
|
137
|
+
declare const ProfileSolid: FC<BaseIconProps>;
|
|
138
|
+
|
|
139
|
+
declare const SearchSolid: FC<BaseIconProps>;
|
|
140
|
+
|
|
141
|
+
declare const SettingSolid: FC<BaseIconProps>;
|
|
142
|
+
|
|
143
|
+
declare const TrashSolid: FC<BaseIconProps>;
|
|
144
|
+
|
|
115
145
|
declare const TrendUp: FC<BaseIconProps>;
|
|
116
146
|
|
|
117
147
|
declare const Voucher: FC<BaseIconProps>;
|
|
118
148
|
|
|
119
149
|
declare const Wallet: FC<BaseIconProps>;
|
|
120
150
|
|
|
121
|
-
export { ArrowLeft$1 as ArrowLeft, ArrowLeft as ArrowLeftLarge, ArrowRight$1 as ArrowRight, ArrowRight as ArrowRightLarge, Bag$1 as Bag, Calendar, CalendarEvent, Category, ChatCs, Check$1 as Check, Check as CheckLarge, ChevronUp$2 as ChevronDown, ChevronUp$1 as ChevronDownLarge, ChevronLeft, ChevronLeftLarge, ChevronRight, ChevronRightLarge, ChevronUp, ChevronUpLarge, Close, CloseLarge, ContactBook, Delivered, Direction, Edit, Enveloped, EyeClose, EyeOpen, Filter, Gps, Hand, Handphone, Heart, Home, Info, KebabMenu, Logout, MapMarker, MapMarkerSolid, Minus, MinusLarge, OrderHistory, Otp, Plus, PlusLarge, PrivacyPolicy, Profile, QRCode, Search, Setting, Bag as Share, Sort, StoreComplete, TermConditions, TrendUp, Truck, Voucher, Wallet };
|
|
151
|
+
export { ArrowLeft$1 as ArrowLeft, ArrowLeft as ArrowLeftLarge, ArrowRight$1 as ArrowRight, ArrowRight as ArrowRightLarge, Bag$1 as Bag, BagSolid, Calendar, CalendarEvent, Category, CategorySolid, ChatCs, ChatCsSolid, Check$1 as Check, Check as CheckLarge, ChevronUp$2 as ChevronDown, ChevronUp$1 as ChevronDownLarge, ChevronLeft, ChevronLeftLarge, ChevronRight, ChevronRightLarge, ChevronUp, ChevronUpLarge, Close, CloseLarge, ContactBook, Delivered, Direction, Edit, Enveloped, EnvelopedSolid, EyeClose, EyeOpen, Filter, Gps, Hand, Handphone, HandphoneSolid, Heart, HeartSolid, Home, HomeSolid, Info, InfoSolid, KebabMenu, Logout, MapMarker, MapMarkerSolid, Minus, MinusLarge, NoGps, OrderHistory, Otp, Plus, PlusLarge, PrivacyPolicy, Profile, ProfileSolid, QRCode, QRCodeBase, Search, SearchSolid, Setting, SettingSolid, Bag as Share, Sort, StoreComplete, TermConditions, Trash, TrashSolid, TrendUp, Truck, Voucher, Wallet };
|