@manychat/icons 4.22.0 → 4.23.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/index.d.ts +2 -0
- package/dist/index.es.js +74 -10
- package/dist/index.js +75 -9
- package/package.json +1 -1
- package/umd/mcicons.js +71 -9
- package/umd/mcicons.min.js +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -328,8 +328,10 @@ export const Canva: Icon
|
|
|
328
328
|
export const Kajabi: Icon
|
|
329
329
|
export const Magento: Icon
|
|
330
330
|
export const ArrowDownRight: Icon
|
|
331
|
+
export const ReturnKey: Icon
|
|
331
332
|
export const Unread: Icon
|
|
332
333
|
export const Privacy: Icon
|
|
333
334
|
export const Location: Icon
|
|
334
335
|
export const TikTok: Icon
|
|
335
336
|
export const TikTokChannel: Icon
|
|
337
|
+
export const TikTokChannel2: Icon
|
package/dist/index.es.js
CHANGED
|
@@ -11142,13 +11142,44 @@ ArrowDownRight.defaultProps = {
|
|
|
11142
11142
|
|
|
11143
11143
|
const _excluded$50 = ["color", "size"];
|
|
11144
11144
|
|
|
11145
|
-
const
|
|
11145
|
+
const ReturnKey = props => {
|
|
11146
11146
|
const {
|
|
11147
11147
|
color,
|
|
11148
11148
|
size
|
|
11149
11149
|
} = props,
|
|
11150
11150
|
otherProps = _objectWithoutProperties(props, _excluded$50);
|
|
11151
11151
|
|
|
11152
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11153
|
+
width: size,
|
|
11154
|
+
height: size,
|
|
11155
|
+
viewBox: "0 0 24 24",
|
|
11156
|
+
fill: "none",
|
|
11157
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11158
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11159
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11160
|
+
d: "M7.32484 19.1821L2.5 14.3573L7.32484 9.53242V19.1821ZM5.84652 15.2345V13.48H20.451V15.2345H5.84652ZM18.7452 15.2345V5H20.4997V15.2345H18.7452ZM14.0179 6.75449V5H20.451V6.75449H14.0179Z",
|
|
11161
|
+
fill: color
|
|
11162
|
+
}));
|
|
11163
|
+
};
|
|
11164
|
+
|
|
11165
|
+
ReturnKey.propTypes = {
|
|
11166
|
+
color: PropTypes.string,
|
|
11167
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
11168
|
+
};
|
|
11169
|
+
ReturnKey.defaultProps = {
|
|
11170
|
+
color: 'currentColor',
|
|
11171
|
+
size: '24'
|
|
11172
|
+
};
|
|
11173
|
+
|
|
11174
|
+
const _excluded$51 = ["color", "size"];
|
|
11175
|
+
|
|
11176
|
+
const Unread = props => {
|
|
11177
|
+
const {
|
|
11178
|
+
color,
|
|
11179
|
+
size
|
|
11180
|
+
} = props,
|
|
11181
|
+
otherProps = _objectWithoutProperties(props, _excluded$51);
|
|
11182
|
+
|
|
11152
11183
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11153
11184
|
width: size,
|
|
11154
11185
|
height: size,
|
|
@@ -11173,14 +11204,14 @@ Unread.defaultProps = {
|
|
|
11173
11204
|
size: '24'
|
|
11174
11205
|
};
|
|
11175
11206
|
|
|
11176
|
-
const _excluded$
|
|
11207
|
+
const _excluded$52 = ["color", "size"];
|
|
11177
11208
|
|
|
11178
11209
|
const Privacy = props => {
|
|
11179
11210
|
const {
|
|
11180
11211
|
color,
|
|
11181
11212
|
size
|
|
11182
11213
|
} = props,
|
|
11183
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11214
|
+
otherProps = _objectWithoutProperties(props, _excluded$52);
|
|
11184
11215
|
|
|
11185
11216
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11186
11217
|
width: size,
|
|
@@ -11210,14 +11241,14 @@ Privacy.defaultProps = {
|
|
|
11210
11241
|
size: '24'
|
|
11211
11242
|
};
|
|
11212
11243
|
|
|
11213
|
-
const _excluded$
|
|
11244
|
+
const _excluded$53 = ["color", "size"];
|
|
11214
11245
|
|
|
11215
11246
|
const Location = props => {
|
|
11216
11247
|
const {
|
|
11217
11248
|
color,
|
|
11218
11249
|
size
|
|
11219
11250
|
} = props,
|
|
11220
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11251
|
+
otherProps = _objectWithoutProperties(props, _excluded$53);
|
|
11221
11252
|
|
|
11222
11253
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11223
11254
|
width: size,
|
|
@@ -11248,14 +11279,14 @@ Location.defaultProps = {
|
|
|
11248
11279
|
size: '24'
|
|
11249
11280
|
};
|
|
11250
11281
|
|
|
11251
|
-
const _excluded$
|
|
11282
|
+
const _excluded$54 = ["color", "size"];
|
|
11252
11283
|
|
|
11253
11284
|
const TikTok = props => {
|
|
11254
11285
|
const {
|
|
11255
11286
|
color,
|
|
11256
11287
|
size
|
|
11257
11288
|
} = props,
|
|
11258
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11289
|
+
otherProps = _objectWithoutProperties(props, _excluded$54);
|
|
11259
11290
|
|
|
11260
11291
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11261
11292
|
width: size,
|
|
@@ -11297,14 +11328,14 @@ TikTok.defaultProps = {
|
|
|
11297
11328
|
size: '24'
|
|
11298
11329
|
};
|
|
11299
11330
|
|
|
11300
|
-
const _excluded$
|
|
11331
|
+
const _excluded$55 = ["color", "size"];
|
|
11301
11332
|
|
|
11302
11333
|
const TikTokChannel = props => {
|
|
11303
11334
|
const {
|
|
11304
11335
|
color,
|
|
11305
11336
|
size
|
|
11306
11337
|
} = props,
|
|
11307
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11338
|
+
otherProps = _objectWithoutProperties(props, _excluded$55);
|
|
11308
11339
|
|
|
11309
11340
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11310
11341
|
width: size,
|
|
@@ -11345,4 +11376,37 @@ TikTokChannel.defaultProps = {
|
|
|
11345
11376
|
size: '24'
|
|
11346
11377
|
};
|
|
11347
11378
|
|
|
11348
|
-
|
|
11379
|
+
const _excluded$56 = ["color", "size"];
|
|
11380
|
+
|
|
11381
|
+
const TikTokChannel2 = props => {
|
|
11382
|
+
const {
|
|
11383
|
+
color,
|
|
11384
|
+
size
|
|
11385
|
+
} = props,
|
|
11386
|
+
otherProps = _objectWithoutProperties(props, _excluded$56);
|
|
11387
|
+
|
|
11388
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11389
|
+
width: size,
|
|
11390
|
+
height: size,
|
|
11391
|
+
viewBox: "0 0 24 24",
|
|
11392
|
+
fill: "none",
|
|
11393
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11394
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11395
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11396
|
+
fillRule: "evenodd",
|
|
11397
|
+
clipRule: "evenodd",
|
|
11398
|
+
d: "M11.7242 2.21405H16.3828V2.94905C16.3828 3.16886 16.4053 3.38636 16.4462 3.60262L16.474 3.74965C16.6895 4.66466 17.2671 5.45463 18.0566 5.95801L18.0576 5.95868C18.6345 6.32792 19.3257 6.54284 20.0736 6.54284H20.8086V11.1251H20.0736C18.7502 11.1251 17.4945 10.8212 16.3793 10.2799V15.322C16.3793 18.9009 13.4039 21.7859 9.78362 21.7859C8.38271 21.7859 7.08073 21.3535 6.00895 20.6169C4.311 19.4522 3.19141 17.5164 3.19141 15.322C3.19141 11.7431 6.16684 8.858 9.78708 8.858C10.092 8.858 10.3884 8.88176 10.6744 8.9199L11.3123 9.00495V13.8197L10.3625 13.5295C10.1745 13.4721 9.98354 13.4403 9.78708 13.4403C8.70146 13.4403 7.84648 14.3011 7.84648 15.322C7.84648 16.0338 8.25843 16.6639 8.88139 16.9829L8.88234 16.9834C9.15433 17.1232 9.46247 17.2037 9.78708 17.2037C10.841 17.2037 11.6779 16.3917 11.7242 15.4067V2.21405ZM14.9619 3.68405H13.1942V15.4371L13.1936 15.4516C13.1221 17.254 11.612 18.6737 9.78708 18.6737C9.21752 18.6737 8.68001 18.5323 8.21031 18.2908C7.1286 17.7364 6.37648 16.6199 6.37648 15.322C6.37648 13.4593 7.91984 11.9703 9.78708 11.9703C9.80554 11.9703 9.82395 11.9704 9.84229 11.9708V10.3283C9.82387 10.3281 9.80547 10.328 9.78708 10.328C6.94706 10.328 4.66141 12.5862 4.66141 15.322C4.66141 17.0021 5.51705 18.4972 6.84094 19.4051C7.67535 19.9785 8.68914 20.316 9.78362 20.316C12.6236 20.316 14.9093 18.0577 14.9093 15.322V7.58198L16.0669 8.39553C17.0068 9.05606 18.126 9.49088 19.3386 9.6171V7.96189C18.5834 7.85625 17.8796 7.58996 17.2656 7.19708C16.1082 6.45883 15.2632 5.26939 14.9985 3.87649L14.9619 3.68405Z",
|
|
11399
|
+
fill: color
|
|
11400
|
+
}));
|
|
11401
|
+
};
|
|
11402
|
+
|
|
11403
|
+
TikTokChannel2.propTypes = {
|
|
11404
|
+
color: PropTypes.string,
|
|
11405
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
11406
|
+
};
|
|
11407
|
+
TikTokChannel2.defaultProps = {
|
|
11408
|
+
color: 'currentColor',
|
|
11409
|
+
size: '24'
|
|
11410
|
+
};
|
|
11411
|
+
|
|
11412
|
+
export { Action, ActionMarkConversationAsDone, Activecampaign, AddCircle, AddTag, Ads, AdsAd, AdsAdSet, Ai, AiFilled, AlignCenter, AlignLeft, AlignRight, AlignWide, All, Amazon, Analytics, Apple, Apptivo, Archive, ArrowDown, ArrowDownRight, ArrowDrag, ArrowDropDown, ArrowDropUp, ArrowLeft, ArrowRight, ArrowUp, Assign, AssignGroup, Attach, Attention, Audience, Audio, Automation, Basics, Bigcommerce, Bold, Book, Bot, BotRemove, Broadcasting, BuilderAudio, BuilderCard, BuilderGallery, BuilderInput, BuilderList, BuilderText, ButtonEmailBlock, Calendar, Camera, CannedResponse, Canva, Cart, Cgt20, ChatGpt, CheckCircle, CheckboxDone, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ClearMobile, Close, Cloud, CloudDownload, CloudError, CloudUpload, Community, Condition, ConvertChannels, ConvertKit, Copy, CopyToAnotherFlow, Coupon, Create, Creator, CreditCard, CufArray, CufBoolean, CufEnum, CufNoIcon, CufNumber, CufText, CustomField, CustomFieldRemove, Dashboard, Data, DefaultReply, Delay, Delete, DeleteForever, DeleteTag, DoubleChevrotBack, DoubleChevrotCollapse, DoubleChevrotExpand, DoubleChevrotForward, DoubleTick, DragConnector, DragItem, DuplicateSms, Edit, EmailChannel, ExitFullscreen, Export, Facebook, FacebookMessenger, Faq, FbChat, Female, Filter, Fitness, Flodesk, Flow, Folder, FolderAdd, FolderAdsCampaign, FolderOpen, Fullscreen, GoToFlow, Google, GoogleSheets, GrowthTools, GtAdsJson, GtBar, GtBox, GtButton, GtCheckbox, GtCustomerChat, GtFbCode, GtFbComment, GtLanding, GtModal, GtPageTakeover, GtRef, GtSlideIn, GtTakeover, GuestChatChannel, HeadlineBlockEmail, Health, Help, Hide, Home, Hotel, Hotmart, Hubspot, Id, IgLiveComments, Image, Inbox, IncreaseEngagement, Info, InstagramChannel, InstagramChannel3, InstagramDmList, Integromat, Italic, Kajabi, Keyboard, Keywords, Klaviyo, Link, LiveChat, Location, Logout, Magento, MagicWand, Magnet, MailChimp, Male, Mention, Menu, MessageBack, MessageOpen, MessageTemplates, Messenger, MessengerChannel, MessengerList, Mic, Minus, MoreChannels, MoreHor, MoreVert, MosaicView, MoveTo, Nationality, NewCuFs, NewMessage, NewOrphanMobile, NodeAdd, Note, Notification, NotificationMute, OmnichannelWidget, Options, Organization, OrphanAction, OrphanAction2, OrphanAdStatistics, OrphanAdsCampaignMessages, OrphanAdsCampaignTraffic, OrphanArchive, OrphanBuilderSelect, OrphanBuyButton, OrphanCall, OrphanCardQuadrant, OrphanClicked, OrphanDesktop, OrphanFbChat, OrphanFullScreenPreview, OrphanFullText, OrphanIntegration, OrphanIntegromat, OrphanLiveChatDone, OrphanLongArrow, OrphanMainMenu, OrphanMinimizedChat, OrphanMobile, OrphanOpen, OrphanRestore, OrphanSplit, OrphanSubscribedNoInfo, OrphanTableView, OrphanTriggerZap, OtnRequest, Pause, PhoneOutgoing, Pin, Pipedrive, Play, Plus, Popular, PopularFilled, Privacy, ProfessionalConsulting, Protect, PublicChangelog, Publish, Qr, Question, RealEstate, Redo, Reels, Retry, ReturnKey, Rules, Salesforce, Search, SelectAll, Send, Send2, SendMessage, Sequences, SequencesAdd, SequencesRemove, Settings, Share, Shopify, ShopifyDeprecated, Show, ShowFlow, ShowcaseProducts, Smile, Sms, SmsChannel, SolidArrowUnsorted, Sort, SortDown, SortUp, Spacing, Spinner, SponsoredMessages, SponsoredMessages2, Star, Starred, StartFlow, Stop, StopRecord, SystemField, TableView, Tap, Telegram, TelegramChannel, TelegramChannel2, TemplateMediaBg, TemplateStore, TemplateTextMedia, Templates, Text, ThumbDown, ThumbUp, Tick, Ticket, TikTok, TikTokChannel, TikTokChannel2, Time, TimeAdd, Transgender, TriggerFbAds, TriggerFbComments, TriggerFbComments20, TriggerIgStoryReply, TriggerNewSubscriber, Triggers, TriggersLines, Unassign, Underline, Undo, Unpin, Unprotect, Unread, Unsubscribed, User, UserAdd, Video, VideoCircleTg, Warning, WebChat, WebsiteRedirect, WelcomeMessage, WhatsAppChannel, WhatsAppWidget, Wiseagent, Woocommerce, Zapier, Zillow };
|
package/dist/index.js
CHANGED
|
@@ -11148,13 +11148,44 @@ ArrowDownRight.defaultProps = {
|
|
|
11148
11148
|
|
|
11149
11149
|
const _excluded$50 = ["color", "size"];
|
|
11150
11150
|
|
|
11151
|
-
const
|
|
11151
|
+
const ReturnKey = props => {
|
|
11152
11152
|
const {
|
|
11153
11153
|
color,
|
|
11154
11154
|
size
|
|
11155
11155
|
} = props,
|
|
11156
11156
|
otherProps = _objectWithoutProperties(props, _excluded$50);
|
|
11157
11157
|
|
|
11158
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11159
|
+
width: size,
|
|
11160
|
+
height: size,
|
|
11161
|
+
viewBox: "0 0 24 24",
|
|
11162
|
+
fill: "none",
|
|
11163
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11164
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11165
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11166
|
+
d: "M7.32484 19.1821L2.5 14.3573L7.32484 9.53242V19.1821ZM5.84652 15.2345V13.48H20.451V15.2345H5.84652ZM18.7452 15.2345V5H20.4997V15.2345H18.7452ZM14.0179 6.75449V5H20.451V6.75449H14.0179Z",
|
|
11167
|
+
fill: color
|
|
11168
|
+
}));
|
|
11169
|
+
};
|
|
11170
|
+
|
|
11171
|
+
ReturnKey.propTypes = {
|
|
11172
|
+
color: PropTypes.string,
|
|
11173
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
11174
|
+
};
|
|
11175
|
+
ReturnKey.defaultProps = {
|
|
11176
|
+
color: 'currentColor',
|
|
11177
|
+
size: '24'
|
|
11178
|
+
};
|
|
11179
|
+
|
|
11180
|
+
const _excluded$51 = ["color", "size"];
|
|
11181
|
+
|
|
11182
|
+
const Unread = props => {
|
|
11183
|
+
const {
|
|
11184
|
+
color,
|
|
11185
|
+
size
|
|
11186
|
+
} = props,
|
|
11187
|
+
otherProps = _objectWithoutProperties(props, _excluded$51);
|
|
11188
|
+
|
|
11158
11189
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11159
11190
|
width: size,
|
|
11160
11191
|
height: size,
|
|
@@ -11179,14 +11210,14 @@ Unread.defaultProps = {
|
|
|
11179
11210
|
size: '24'
|
|
11180
11211
|
};
|
|
11181
11212
|
|
|
11182
|
-
const _excluded$
|
|
11213
|
+
const _excluded$52 = ["color", "size"];
|
|
11183
11214
|
|
|
11184
11215
|
const Privacy = props => {
|
|
11185
11216
|
const {
|
|
11186
11217
|
color,
|
|
11187
11218
|
size
|
|
11188
11219
|
} = props,
|
|
11189
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11220
|
+
otherProps = _objectWithoutProperties(props, _excluded$52);
|
|
11190
11221
|
|
|
11191
11222
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11192
11223
|
width: size,
|
|
@@ -11216,14 +11247,14 @@ Privacy.defaultProps = {
|
|
|
11216
11247
|
size: '24'
|
|
11217
11248
|
};
|
|
11218
11249
|
|
|
11219
|
-
const _excluded$
|
|
11250
|
+
const _excluded$53 = ["color", "size"];
|
|
11220
11251
|
|
|
11221
11252
|
const Location = props => {
|
|
11222
11253
|
const {
|
|
11223
11254
|
color,
|
|
11224
11255
|
size
|
|
11225
11256
|
} = props,
|
|
11226
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11257
|
+
otherProps = _objectWithoutProperties(props, _excluded$53);
|
|
11227
11258
|
|
|
11228
11259
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11229
11260
|
width: size,
|
|
@@ -11254,14 +11285,14 @@ Location.defaultProps = {
|
|
|
11254
11285
|
size: '24'
|
|
11255
11286
|
};
|
|
11256
11287
|
|
|
11257
|
-
const _excluded$
|
|
11288
|
+
const _excluded$54 = ["color", "size"];
|
|
11258
11289
|
|
|
11259
11290
|
const TikTok = props => {
|
|
11260
11291
|
const {
|
|
11261
11292
|
color,
|
|
11262
11293
|
size
|
|
11263
11294
|
} = props,
|
|
11264
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11295
|
+
otherProps = _objectWithoutProperties(props, _excluded$54);
|
|
11265
11296
|
|
|
11266
11297
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11267
11298
|
width: size,
|
|
@@ -11303,14 +11334,14 @@ TikTok.defaultProps = {
|
|
|
11303
11334
|
size: '24'
|
|
11304
11335
|
};
|
|
11305
11336
|
|
|
11306
|
-
const _excluded$
|
|
11337
|
+
const _excluded$55 = ["color", "size"];
|
|
11307
11338
|
|
|
11308
11339
|
const TikTokChannel = props => {
|
|
11309
11340
|
const {
|
|
11310
11341
|
color,
|
|
11311
11342
|
size
|
|
11312
11343
|
} = props,
|
|
11313
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11344
|
+
otherProps = _objectWithoutProperties(props, _excluded$55);
|
|
11314
11345
|
|
|
11315
11346
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11316
11347
|
width: size,
|
|
@@ -11351,6 +11382,39 @@ TikTokChannel.defaultProps = {
|
|
|
11351
11382
|
size: '24'
|
|
11352
11383
|
};
|
|
11353
11384
|
|
|
11385
|
+
const _excluded$56 = ["color", "size"];
|
|
11386
|
+
|
|
11387
|
+
const TikTokChannel2 = props => {
|
|
11388
|
+
const {
|
|
11389
|
+
color,
|
|
11390
|
+
size
|
|
11391
|
+
} = props,
|
|
11392
|
+
otherProps = _objectWithoutProperties(props, _excluded$56);
|
|
11393
|
+
|
|
11394
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11395
|
+
width: size,
|
|
11396
|
+
height: size,
|
|
11397
|
+
viewBox: "0 0 24 24",
|
|
11398
|
+
fill: "none",
|
|
11399
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11400
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11401
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11402
|
+
fillRule: "evenodd",
|
|
11403
|
+
clipRule: "evenodd",
|
|
11404
|
+
d: "M11.7242 2.21405H16.3828V2.94905C16.3828 3.16886 16.4053 3.38636 16.4462 3.60262L16.474 3.74965C16.6895 4.66466 17.2671 5.45463 18.0566 5.95801L18.0576 5.95868C18.6345 6.32792 19.3257 6.54284 20.0736 6.54284H20.8086V11.1251H20.0736C18.7502 11.1251 17.4945 10.8212 16.3793 10.2799V15.322C16.3793 18.9009 13.4039 21.7859 9.78362 21.7859C8.38271 21.7859 7.08073 21.3535 6.00895 20.6169C4.311 19.4522 3.19141 17.5164 3.19141 15.322C3.19141 11.7431 6.16684 8.858 9.78708 8.858C10.092 8.858 10.3884 8.88176 10.6744 8.9199L11.3123 9.00495V13.8197L10.3625 13.5295C10.1745 13.4721 9.98354 13.4403 9.78708 13.4403C8.70146 13.4403 7.84648 14.3011 7.84648 15.322C7.84648 16.0338 8.25843 16.6639 8.88139 16.9829L8.88234 16.9834C9.15433 17.1232 9.46247 17.2037 9.78708 17.2037C10.841 17.2037 11.6779 16.3917 11.7242 15.4067V2.21405ZM14.9619 3.68405H13.1942V15.4371L13.1936 15.4516C13.1221 17.254 11.612 18.6737 9.78708 18.6737C9.21752 18.6737 8.68001 18.5323 8.21031 18.2908C7.1286 17.7364 6.37648 16.6199 6.37648 15.322C6.37648 13.4593 7.91984 11.9703 9.78708 11.9703C9.80554 11.9703 9.82395 11.9704 9.84229 11.9708V10.3283C9.82387 10.3281 9.80547 10.328 9.78708 10.328C6.94706 10.328 4.66141 12.5862 4.66141 15.322C4.66141 17.0021 5.51705 18.4972 6.84094 19.4051C7.67535 19.9785 8.68914 20.316 9.78362 20.316C12.6236 20.316 14.9093 18.0577 14.9093 15.322V7.58198L16.0669 8.39553C17.0068 9.05606 18.126 9.49088 19.3386 9.6171V7.96189C18.5834 7.85625 17.8796 7.58996 17.2656 7.19708C16.1082 6.45883 15.2632 5.26939 14.9985 3.87649L14.9619 3.68405Z",
|
|
11405
|
+
fill: color
|
|
11406
|
+
}));
|
|
11407
|
+
};
|
|
11408
|
+
|
|
11409
|
+
TikTokChannel2.propTypes = {
|
|
11410
|
+
color: PropTypes.string,
|
|
11411
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
11412
|
+
};
|
|
11413
|
+
TikTokChannel2.defaultProps = {
|
|
11414
|
+
color: 'currentColor',
|
|
11415
|
+
size: '24'
|
|
11416
|
+
};
|
|
11417
|
+
|
|
11354
11418
|
exports.Action = Action;
|
|
11355
11419
|
exports.ActionMarkConversationAsDone = ActionMarkConversationAsDone;
|
|
11356
11420
|
exports.Activecampaign = Activecampaign;
|
|
@@ -11595,6 +11659,7 @@ exports.RealEstate = RealEstate;
|
|
|
11595
11659
|
exports.Redo = Redo;
|
|
11596
11660
|
exports.Reels = Reels;
|
|
11597
11661
|
exports.Retry = Retry;
|
|
11662
|
+
exports.ReturnKey = ReturnKey;
|
|
11598
11663
|
exports.Rules = Rules;
|
|
11599
11664
|
exports.Salesforce = Salesforce;
|
|
11600
11665
|
exports.Search = Search;
|
|
@@ -11645,6 +11710,7 @@ exports.Tick = Tick;
|
|
|
11645
11710
|
exports.Ticket = Ticket;
|
|
11646
11711
|
exports.TikTok = TikTok;
|
|
11647
11712
|
exports.TikTokChannel = TikTokChannel;
|
|
11713
|
+
exports.TikTokChannel2 = TikTokChannel2;
|
|
11648
11714
|
exports.Time = Time;
|
|
11649
11715
|
exports.TimeAdd = TimeAdd;
|
|
11650
11716
|
exports.Transgender = Transgender;
|
package/package.json
CHANGED
package/umd/mcicons.js
CHANGED
|
@@ -10508,11 +10508,40 @@
|
|
|
10508
10508
|
|
|
10509
10509
|
var _excluded$50 = ["color", "size"];
|
|
10510
10510
|
|
|
10511
|
-
var
|
|
10511
|
+
var ReturnKey = function ReturnKey(props) {
|
|
10512
10512
|
var color = props.color,
|
|
10513
10513
|
size = props.size,
|
|
10514
10514
|
otherProps = _objectWithoutProperties(props, _excluded$50);
|
|
10515
10515
|
|
|
10516
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10517
|
+
width: size,
|
|
10518
|
+
height: size,
|
|
10519
|
+
viewBox: "0 0 24 24",
|
|
10520
|
+
fill: "none",
|
|
10521
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10522
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
10523
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
10524
|
+
d: "M7.32484 19.1821L2.5 14.3573L7.32484 9.53242V19.1821ZM5.84652 15.2345V13.48H20.451V15.2345H5.84652ZM18.7452 15.2345V5H20.4997V15.2345H18.7452ZM14.0179 6.75449V5H20.451V6.75449H14.0179Z",
|
|
10525
|
+
fill: color
|
|
10526
|
+
}));
|
|
10527
|
+
};
|
|
10528
|
+
|
|
10529
|
+
ReturnKey.propTypes = {
|
|
10530
|
+
color: PropTypes.string,
|
|
10531
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
10532
|
+
};
|
|
10533
|
+
ReturnKey.defaultProps = {
|
|
10534
|
+
color: 'currentColor',
|
|
10535
|
+
size: '24'
|
|
10536
|
+
};
|
|
10537
|
+
|
|
10538
|
+
var _excluded$51 = ["color", "size"];
|
|
10539
|
+
|
|
10540
|
+
var Unread = function Unread(props) {
|
|
10541
|
+
var color = props.color,
|
|
10542
|
+
size = props.size,
|
|
10543
|
+
otherProps = _objectWithoutProperties(props, _excluded$51);
|
|
10544
|
+
|
|
10516
10545
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10517
10546
|
width: size,
|
|
10518
10547
|
height: size,
|
|
@@ -10537,12 +10566,12 @@
|
|
|
10537
10566
|
size: '24'
|
|
10538
10567
|
};
|
|
10539
10568
|
|
|
10540
|
-
var _excluded$
|
|
10569
|
+
var _excluded$52 = ["color", "size"];
|
|
10541
10570
|
|
|
10542
10571
|
var Privacy = function Privacy(props) {
|
|
10543
10572
|
var color = props.color,
|
|
10544
10573
|
size = props.size,
|
|
10545
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10574
|
+
otherProps = _objectWithoutProperties(props, _excluded$52);
|
|
10546
10575
|
|
|
10547
10576
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10548
10577
|
width: size,
|
|
@@ -10572,12 +10601,12 @@
|
|
|
10572
10601
|
size: '24'
|
|
10573
10602
|
};
|
|
10574
10603
|
|
|
10575
|
-
var _excluded$
|
|
10604
|
+
var _excluded$53 = ["color", "size"];
|
|
10576
10605
|
|
|
10577
10606
|
var Location = function Location(props) {
|
|
10578
10607
|
var color = props.color,
|
|
10579
10608
|
size = props.size,
|
|
10580
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10609
|
+
otherProps = _objectWithoutProperties(props, _excluded$53);
|
|
10581
10610
|
|
|
10582
10611
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10583
10612
|
width: size,
|
|
@@ -10608,12 +10637,12 @@
|
|
|
10608
10637
|
size: '24'
|
|
10609
10638
|
};
|
|
10610
10639
|
|
|
10611
|
-
var _excluded$
|
|
10640
|
+
var _excluded$54 = ["color", "size"];
|
|
10612
10641
|
|
|
10613
10642
|
var TikTok = function TikTok(props) {
|
|
10614
10643
|
var color = props.color,
|
|
10615
10644
|
size = props.size,
|
|
10616
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10645
|
+
otherProps = _objectWithoutProperties(props, _excluded$54);
|
|
10617
10646
|
|
|
10618
10647
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10619
10648
|
width: size,
|
|
@@ -10655,12 +10684,12 @@
|
|
|
10655
10684
|
size: '24'
|
|
10656
10685
|
};
|
|
10657
10686
|
|
|
10658
|
-
var _excluded$
|
|
10687
|
+
var _excluded$55 = ["color", "size"];
|
|
10659
10688
|
|
|
10660
10689
|
var TikTokChannel = function TikTokChannel(props) {
|
|
10661
10690
|
var color = props.color,
|
|
10662
10691
|
size = props.size,
|
|
10663
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10692
|
+
otherProps = _objectWithoutProperties(props, _excluded$55);
|
|
10664
10693
|
|
|
10665
10694
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10666
10695
|
width: size,
|
|
@@ -10701,6 +10730,37 @@
|
|
|
10701
10730
|
size: '24'
|
|
10702
10731
|
};
|
|
10703
10732
|
|
|
10733
|
+
var _excluded$56 = ["color", "size"];
|
|
10734
|
+
|
|
10735
|
+
var TikTokChannel2 = function TikTokChannel2(props) {
|
|
10736
|
+
var color = props.color,
|
|
10737
|
+
size = props.size,
|
|
10738
|
+
otherProps = _objectWithoutProperties(props, _excluded$56);
|
|
10739
|
+
|
|
10740
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10741
|
+
width: size,
|
|
10742
|
+
height: size,
|
|
10743
|
+
viewBox: "0 0 24 24",
|
|
10744
|
+
fill: "none",
|
|
10745
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10746
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
10747
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
10748
|
+
fillRule: "evenodd",
|
|
10749
|
+
clipRule: "evenodd",
|
|
10750
|
+
d: "M11.7242 2.21405H16.3828V2.94905C16.3828 3.16886 16.4053 3.38636 16.4462 3.60262L16.474 3.74965C16.6895 4.66466 17.2671 5.45463 18.0566 5.95801L18.0576 5.95868C18.6345 6.32792 19.3257 6.54284 20.0736 6.54284H20.8086V11.1251H20.0736C18.7502 11.1251 17.4945 10.8212 16.3793 10.2799V15.322C16.3793 18.9009 13.4039 21.7859 9.78362 21.7859C8.38271 21.7859 7.08073 21.3535 6.00895 20.6169C4.311 19.4522 3.19141 17.5164 3.19141 15.322C3.19141 11.7431 6.16684 8.858 9.78708 8.858C10.092 8.858 10.3884 8.88176 10.6744 8.9199L11.3123 9.00495V13.8197L10.3625 13.5295C10.1745 13.4721 9.98354 13.4403 9.78708 13.4403C8.70146 13.4403 7.84648 14.3011 7.84648 15.322C7.84648 16.0338 8.25843 16.6639 8.88139 16.9829L8.88234 16.9834C9.15433 17.1232 9.46247 17.2037 9.78708 17.2037C10.841 17.2037 11.6779 16.3917 11.7242 15.4067V2.21405ZM14.9619 3.68405H13.1942V15.4371L13.1936 15.4516C13.1221 17.254 11.612 18.6737 9.78708 18.6737C9.21752 18.6737 8.68001 18.5323 8.21031 18.2908C7.1286 17.7364 6.37648 16.6199 6.37648 15.322C6.37648 13.4593 7.91984 11.9703 9.78708 11.9703C9.80554 11.9703 9.82395 11.9704 9.84229 11.9708V10.3283C9.82387 10.3281 9.80547 10.328 9.78708 10.328C6.94706 10.328 4.66141 12.5862 4.66141 15.322C4.66141 17.0021 5.51705 18.4972 6.84094 19.4051C7.67535 19.9785 8.68914 20.316 9.78362 20.316C12.6236 20.316 14.9093 18.0577 14.9093 15.322V7.58198L16.0669 8.39553C17.0068 9.05606 18.126 9.49088 19.3386 9.6171V7.96189C18.5834 7.85625 17.8796 7.58996 17.2656 7.19708C16.1082 6.45883 15.2632 5.26939 14.9985 3.87649L14.9619 3.68405Z",
|
|
10751
|
+
fill: color
|
|
10752
|
+
}));
|
|
10753
|
+
};
|
|
10754
|
+
|
|
10755
|
+
TikTokChannel2.propTypes = {
|
|
10756
|
+
color: PropTypes.string,
|
|
10757
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
10758
|
+
};
|
|
10759
|
+
TikTokChannel2.defaultProps = {
|
|
10760
|
+
color: 'currentColor',
|
|
10761
|
+
size: '24'
|
|
10762
|
+
};
|
|
10763
|
+
|
|
10704
10764
|
exports.Action = Action;
|
|
10705
10765
|
exports.ActionMarkConversationAsDone = ActionMarkConversationAsDone;
|
|
10706
10766
|
exports.Activecampaign = Activecampaign;
|
|
@@ -10945,6 +11005,7 @@
|
|
|
10945
11005
|
exports.Redo = Redo;
|
|
10946
11006
|
exports.Reels = Reels;
|
|
10947
11007
|
exports.Retry = Retry;
|
|
11008
|
+
exports.ReturnKey = ReturnKey;
|
|
10948
11009
|
exports.Rules = Rules;
|
|
10949
11010
|
exports.Salesforce = Salesforce;
|
|
10950
11011
|
exports.Search = Search;
|
|
@@ -10995,6 +11056,7 @@
|
|
|
10995
11056
|
exports.Ticket = Ticket;
|
|
10996
11057
|
exports.TikTok = TikTok;
|
|
10997
11058
|
exports.TikTokChannel = TikTokChannel;
|
|
11059
|
+
exports.TikTokChannel2 = TikTokChannel2;
|
|
10998
11060
|
exports.Time = Time;
|
|
10999
11061
|
exports.TimeAdd = TimeAdd;
|
|
11000
11062
|
exports.Transgender = Transgender;
|