@manychat/icons 4.28.0 → 4.30.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 +3 -0
- package/dist/index.es.js +105 -1
- package/dist/index.js +107 -0
- package/package.json +1 -1
- package/umd/mcicons.js +107 -0
- package/umd/mcicons.min.js +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.es.js
CHANGED
|
@@ -11367,4 +11367,108 @@ const Bullet = _ref => {
|
|
|
11367
11367
|
}));
|
|
11368
11368
|
};
|
|
11369
11369
|
|
|
11370
|
-
|
|
11370
|
+
const _excluded$5e = ["color", "size"];
|
|
11371
|
+
/**
|
|
11372
|
+
* @typedef {Object} NavCollapseProps
|
|
11373
|
+
* @property {string} [color='currentColor']
|
|
11374
|
+
* @property {string|number} [size='24']
|
|
11375
|
+
*
|
|
11376
|
+
* @param {NavCollapseProps} props
|
|
11377
|
+
* @returns {JSX.Element}
|
|
11378
|
+
*/
|
|
11379
|
+
|
|
11380
|
+
const NavCollapse = _ref => {
|
|
11381
|
+
let {
|
|
11382
|
+
color = 'currentColor',
|
|
11383
|
+
size = '24'
|
|
11384
|
+
} = _ref,
|
|
11385
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5e);
|
|
11386
|
+
|
|
11387
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11388
|
+
width: size,
|
|
11389
|
+
height: size,
|
|
11390
|
+
viewBox: "0 0 24 24",
|
|
11391
|
+
fill: "none",
|
|
11392
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11393
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11394
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11395
|
+
d: "M2 5L2 19H3.5L3.5 5H2Z",
|
|
11396
|
+
fill: color
|
|
11397
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11398
|
+
d: "M12 16.9296L7.07042 12L12 7.07042V5L5 12L12 19V16.9296Z",
|
|
11399
|
+
fill: color
|
|
11400
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11401
|
+
d: "M12 12.7999L22 12.7999V11.2999L12 11.2999V12.7999Z",
|
|
11402
|
+
fill: color
|
|
11403
|
+
}));
|
|
11404
|
+
};
|
|
11405
|
+
|
|
11406
|
+
const _excluded$5f = ["color", "size"];
|
|
11407
|
+
/**
|
|
11408
|
+
* @typedef {Object} NavExpandProps
|
|
11409
|
+
* @property {string} [color='currentColor']
|
|
11410
|
+
* @property {string|number} [size='24']
|
|
11411
|
+
*
|
|
11412
|
+
* @param {NavExpandProps} props
|
|
11413
|
+
* @returns {JSX.Element}
|
|
11414
|
+
*/
|
|
11415
|
+
|
|
11416
|
+
const NavExpand = _ref => {
|
|
11417
|
+
let {
|
|
11418
|
+
color = 'currentColor',
|
|
11419
|
+
size = '24'
|
|
11420
|
+
} = _ref,
|
|
11421
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5f);
|
|
11422
|
+
|
|
11423
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11424
|
+
width: size,
|
|
11425
|
+
height: size,
|
|
11426
|
+
viewBox: "0 0 24 24",
|
|
11427
|
+
fill: "none",
|
|
11428
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11429
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11430
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11431
|
+
d: "M12 7.07042L16.9296 12L12 16.9296L12 19L19 12L12 5V7.07042Z",
|
|
11432
|
+
fill: color
|
|
11433
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11434
|
+
d: "M12 11.2001H2L2 12.7001H12V11.2001Z",
|
|
11435
|
+
fill: color
|
|
11436
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11437
|
+
d: "M20.5 19H22L22 5H20.5V19Z",
|
|
11438
|
+
fill: color
|
|
11439
|
+
}));
|
|
11440
|
+
};
|
|
11441
|
+
|
|
11442
|
+
const _excluded$5g = ["color", "size"];
|
|
11443
|
+
/**
|
|
11444
|
+
* @typedef {Object} RetailProps
|
|
11445
|
+
* @property {string} [color='currentColor']
|
|
11446
|
+
* @property {string|number} [size='24']
|
|
11447
|
+
*
|
|
11448
|
+
* @param {RetailProps} props
|
|
11449
|
+
* @returns {JSX.Element}
|
|
11450
|
+
*/
|
|
11451
|
+
|
|
11452
|
+
const Retail = _ref => {
|
|
11453
|
+
let {
|
|
11454
|
+
color = 'currentColor',
|
|
11455
|
+
size = '24'
|
|
11456
|
+
} = _ref,
|
|
11457
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5g);
|
|
11458
|
+
|
|
11459
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11460
|
+
width: size,
|
|
11461
|
+
height: size,
|
|
11462
|
+
viewBox: "0 0 24 24",
|
|
11463
|
+
fill: "none",
|
|
11464
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11465
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11466
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11467
|
+
fillRule: "evenodd",
|
|
11468
|
+
clipRule: "evenodd",
|
|
11469
|
+
d: "M7.65942 6.39596C8.74782 4.08615 10.6786 2.22955 13.5313 2.22974C14.804 2.22982 15.7703 2.79884 16.392 3.68151C16.8584 4.34358 17.1228 5.16598 17.2189 6.04043L20.4245 8.22104L21.2307 20.8941L17.2299 22.1823L17.2235 22.1843L17.2231 22.235L17.0401 22.2175C16.9647 22.2215 16.8902 22.2141 16.8188 22.1962L2.67615 20.8386L4.98419 6.62784L7.65942 6.39596ZM13.4688 3.70764C14.2174 3.70769 14.7516 4.01979 15.1248 4.54955C15.3433 4.85983 15.5097 5.25215 15.6139 5.70651L9.42113 6.24326C10.3579 4.6749 11.7094 3.70753 13.4688 3.70764ZM15.8126 7.20062C15.8165 7.20852 15.8206 7.21633 15.8249 7.22405L15.7343 20.5852L4.41346 19.4985L6.27752 8.02136L15.8099 7.19514C15.8108 7.19697 15.8117 7.1988 15.8126 7.20062ZM17.2342 20.605L19.6596 19.8241L18.9741 9.04857L17.3202 7.92347L17.2342 20.605Z",
|
|
11470
|
+
fill: color
|
|
11471
|
+
}));
|
|
11472
|
+
};
|
|
11473
|
+
|
|
11474
|
+
export { Action, ActionMarkConversationAsDone, Activecampaign, AddCircle, AddTag, Ads, AdsAd, AdsAdSet, Ai, AiFilled, AiIntention, AiStep, 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, AutomationsPausedFilled, AutomationsStoppedFilled, Basics, Bigcommerce, Bold, Book, Bot, BotRemove, Broadcasting, BuilderAudio, BuilderCard, BuilderGallery, BuilderInput, BuilderList, BuilderText, Bullet, 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, GoogleAlt, 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, NavCollapse, NavExpand, 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, Retail, 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, Stop2, 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
|
@@ -11373,6 +11373,110 @@ const Bullet = _ref => {
|
|
|
11373
11373
|
}));
|
|
11374
11374
|
};
|
|
11375
11375
|
|
|
11376
|
+
const _excluded$5e = ["color", "size"];
|
|
11377
|
+
/**
|
|
11378
|
+
* @typedef {Object} NavCollapseProps
|
|
11379
|
+
* @property {string} [color='currentColor']
|
|
11380
|
+
* @property {string|number} [size='24']
|
|
11381
|
+
*
|
|
11382
|
+
* @param {NavCollapseProps} props
|
|
11383
|
+
* @returns {JSX.Element}
|
|
11384
|
+
*/
|
|
11385
|
+
|
|
11386
|
+
const NavCollapse = _ref => {
|
|
11387
|
+
let {
|
|
11388
|
+
color = 'currentColor',
|
|
11389
|
+
size = '24'
|
|
11390
|
+
} = _ref,
|
|
11391
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5e);
|
|
11392
|
+
|
|
11393
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11394
|
+
width: size,
|
|
11395
|
+
height: size,
|
|
11396
|
+
viewBox: "0 0 24 24",
|
|
11397
|
+
fill: "none",
|
|
11398
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11399
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11400
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11401
|
+
d: "M2 5L2 19H3.5L3.5 5H2Z",
|
|
11402
|
+
fill: color
|
|
11403
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11404
|
+
d: "M12 16.9296L7.07042 12L12 7.07042V5L5 12L12 19V16.9296Z",
|
|
11405
|
+
fill: color
|
|
11406
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11407
|
+
d: "M12 12.7999L22 12.7999V11.2999L12 11.2999V12.7999Z",
|
|
11408
|
+
fill: color
|
|
11409
|
+
}));
|
|
11410
|
+
};
|
|
11411
|
+
|
|
11412
|
+
const _excluded$5f = ["color", "size"];
|
|
11413
|
+
/**
|
|
11414
|
+
* @typedef {Object} NavExpandProps
|
|
11415
|
+
* @property {string} [color='currentColor']
|
|
11416
|
+
* @property {string|number} [size='24']
|
|
11417
|
+
*
|
|
11418
|
+
* @param {NavExpandProps} props
|
|
11419
|
+
* @returns {JSX.Element}
|
|
11420
|
+
*/
|
|
11421
|
+
|
|
11422
|
+
const NavExpand = _ref => {
|
|
11423
|
+
let {
|
|
11424
|
+
color = 'currentColor',
|
|
11425
|
+
size = '24'
|
|
11426
|
+
} = _ref,
|
|
11427
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5f);
|
|
11428
|
+
|
|
11429
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11430
|
+
width: size,
|
|
11431
|
+
height: size,
|
|
11432
|
+
viewBox: "0 0 24 24",
|
|
11433
|
+
fill: "none",
|
|
11434
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11435
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11436
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11437
|
+
d: "M12 7.07042L16.9296 12L12 16.9296L12 19L19 12L12 5V7.07042Z",
|
|
11438
|
+
fill: color
|
|
11439
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11440
|
+
d: "M12 11.2001H2L2 12.7001H12V11.2001Z",
|
|
11441
|
+
fill: color
|
|
11442
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11443
|
+
d: "M20.5 19H22L22 5H20.5V19Z",
|
|
11444
|
+
fill: color
|
|
11445
|
+
}));
|
|
11446
|
+
};
|
|
11447
|
+
|
|
11448
|
+
const _excluded$5g = ["color", "size"];
|
|
11449
|
+
/**
|
|
11450
|
+
* @typedef {Object} RetailProps
|
|
11451
|
+
* @property {string} [color='currentColor']
|
|
11452
|
+
* @property {string|number} [size='24']
|
|
11453
|
+
*
|
|
11454
|
+
* @param {RetailProps} props
|
|
11455
|
+
* @returns {JSX.Element}
|
|
11456
|
+
*/
|
|
11457
|
+
|
|
11458
|
+
const Retail = _ref => {
|
|
11459
|
+
let {
|
|
11460
|
+
color = 'currentColor',
|
|
11461
|
+
size = '24'
|
|
11462
|
+
} = _ref,
|
|
11463
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5g);
|
|
11464
|
+
|
|
11465
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11466
|
+
width: size,
|
|
11467
|
+
height: size,
|
|
11468
|
+
viewBox: "0 0 24 24",
|
|
11469
|
+
fill: "none",
|
|
11470
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11471
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11472
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11473
|
+
fillRule: "evenodd",
|
|
11474
|
+
clipRule: "evenodd",
|
|
11475
|
+
d: "M7.65942 6.39596C8.74782 4.08615 10.6786 2.22955 13.5313 2.22974C14.804 2.22982 15.7703 2.79884 16.392 3.68151C16.8584 4.34358 17.1228 5.16598 17.2189 6.04043L20.4245 8.22104L21.2307 20.8941L17.2299 22.1823L17.2235 22.1843L17.2231 22.235L17.0401 22.2175C16.9647 22.2215 16.8902 22.2141 16.8188 22.1962L2.67615 20.8386L4.98419 6.62784L7.65942 6.39596ZM13.4688 3.70764C14.2174 3.70769 14.7516 4.01979 15.1248 4.54955C15.3433 4.85983 15.5097 5.25215 15.6139 5.70651L9.42113 6.24326C10.3579 4.6749 11.7094 3.70753 13.4688 3.70764ZM15.8126 7.20062C15.8165 7.20852 15.8206 7.21633 15.8249 7.22405L15.7343 20.5852L4.41346 19.4985L6.27752 8.02136L15.8099 7.19514C15.8108 7.19697 15.8117 7.1988 15.8126 7.20062ZM17.2342 20.605L19.6596 19.8241L18.9741 9.04857L17.3202 7.92347L17.2342 20.605Z",
|
|
11476
|
+
fill: color
|
|
11477
|
+
}));
|
|
11478
|
+
};
|
|
11479
|
+
|
|
11376
11480
|
exports.Action = Action;
|
|
11377
11481
|
exports.ActionMarkConversationAsDone = ActionMarkConversationAsDone;
|
|
11378
11482
|
exports.Activecampaign = Activecampaign;
|
|
@@ -11565,6 +11669,8 @@ exports.MoreVert = MoreVert;
|
|
|
11565
11669
|
exports.MosaicView = MosaicView;
|
|
11566
11670
|
exports.MoveTo = MoveTo;
|
|
11567
11671
|
exports.Nationality = Nationality;
|
|
11672
|
+
exports.NavCollapse = NavCollapse;
|
|
11673
|
+
exports.NavExpand = NavExpand;
|
|
11568
11674
|
exports.NewCuFs = NewCuFs;
|
|
11569
11675
|
exports.NewMessage = NewMessage;
|
|
11570
11676
|
exports.NewOrphanMobile = NewOrphanMobile;
|
|
@@ -11622,6 +11728,7 @@ exports.Question = Question;
|
|
|
11622
11728
|
exports.RealEstate = RealEstate;
|
|
11623
11729
|
exports.Redo = Redo;
|
|
11624
11730
|
exports.Reels = Reels;
|
|
11731
|
+
exports.Retail = Retail;
|
|
11625
11732
|
exports.Retry = Retry;
|
|
11626
11733
|
exports.ReturnKey = ReturnKey;
|
|
11627
11734
|
exports.Rules = Rules;
|
package/package.json
CHANGED
package/umd/mcicons.js
CHANGED
|
@@ -11336,6 +11336,110 @@
|
|
|
11336
11336
|
}));
|
|
11337
11337
|
};
|
|
11338
11338
|
|
|
11339
|
+
var _excluded$5e = ["color", "size"];
|
|
11340
|
+
/**
|
|
11341
|
+
* @typedef {Object} NavCollapseProps
|
|
11342
|
+
* @property {string} [color='currentColor']
|
|
11343
|
+
* @property {string|number} [size='24']
|
|
11344
|
+
*
|
|
11345
|
+
* @param {NavCollapseProps} props
|
|
11346
|
+
* @returns {JSX.Element}
|
|
11347
|
+
*/
|
|
11348
|
+
|
|
11349
|
+
var NavCollapse = function NavCollapse(_ref) {
|
|
11350
|
+
var _ref$color = _ref.color,
|
|
11351
|
+
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
|
|
11352
|
+
_ref$size = _ref.size,
|
|
11353
|
+
size = _ref$size === void 0 ? '24' : _ref$size,
|
|
11354
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5e);
|
|
11355
|
+
|
|
11356
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11357
|
+
width: size,
|
|
11358
|
+
height: size,
|
|
11359
|
+
viewBox: "0 0 24 24",
|
|
11360
|
+
fill: "none",
|
|
11361
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11362
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11363
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11364
|
+
d: "M2 5L2 19H3.5L3.5 5H2Z",
|
|
11365
|
+
fill: color
|
|
11366
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11367
|
+
d: "M12 16.9296L7.07042 12L12 7.07042V5L5 12L12 19V16.9296Z",
|
|
11368
|
+
fill: color
|
|
11369
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11370
|
+
d: "M12 12.7999L22 12.7999V11.2999L12 11.2999V12.7999Z",
|
|
11371
|
+
fill: color
|
|
11372
|
+
}));
|
|
11373
|
+
};
|
|
11374
|
+
|
|
11375
|
+
var _excluded$5f = ["color", "size"];
|
|
11376
|
+
/**
|
|
11377
|
+
* @typedef {Object} NavExpandProps
|
|
11378
|
+
* @property {string} [color='currentColor']
|
|
11379
|
+
* @property {string|number} [size='24']
|
|
11380
|
+
*
|
|
11381
|
+
* @param {NavExpandProps} props
|
|
11382
|
+
* @returns {JSX.Element}
|
|
11383
|
+
*/
|
|
11384
|
+
|
|
11385
|
+
var NavExpand = function NavExpand(_ref) {
|
|
11386
|
+
var _ref$color = _ref.color,
|
|
11387
|
+
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
|
|
11388
|
+
_ref$size = _ref.size,
|
|
11389
|
+
size = _ref$size === void 0 ? '24' : _ref$size,
|
|
11390
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5f);
|
|
11391
|
+
|
|
11392
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11393
|
+
width: size,
|
|
11394
|
+
height: size,
|
|
11395
|
+
viewBox: "0 0 24 24",
|
|
11396
|
+
fill: "none",
|
|
11397
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11398
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11399
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11400
|
+
d: "M12 7.07042L16.9296 12L12 16.9296L12 19L19 12L12 5V7.07042Z",
|
|
11401
|
+
fill: color
|
|
11402
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11403
|
+
d: "M12 11.2001H2L2 12.7001H12V11.2001Z",
|
|
11404
|
+
fill: color
|
|
11405
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11406
|
+
d: "M20.5 19H22L22 5H20.5V19Z",
|
|
11407
|
+
fill: color
|
|
11408
|
+
}));
|
|
11409
|
+
};
|
|
11410
|
+
|
|
11411
|
+
var _excluded$5g = ["color", "size"];
|
|
11412
|
+
/**
|
|
11413
|
+
* @typedef {Object} RetailProps
|
|
11414
|
+
* @property {string} [color='currentColor']
|
|
11415
|
+
* @property {string|number} [size='24']
|
|
11416
|
+
*
|
|
11417
|
+
* @param {RetailProps} props
|
|
11418
|
+
* @returns {JSX.Element}
|
|
11419
|
+
*/
|
|
11420
|
+
|
|
11421
|
+
var Retail = function Retail(_ref) {
|
|
11422
|
+
var _ref$color = _ref.color,
|
|
11423
|
+
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
|
|
11424
|
+
_ref$size = _ref.size,
|
|
11425
|
+
size = _ref$size === void 0 ? '24' : _ref$size,
|
|
11426
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5g);
|
|
11427
|
+
|
|
11428
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11429
|
+
width: size,
|
|
11430
|
+
height: size,
|
|
11431
|
+
viewBox: "0 0 24 24",
|
|
11432
|
+
fill: "none",
|
|
11433
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11434
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11435
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11436
|
+
fillRule: "evenodd",
|
|
11437
|
+
clipRule: "evenodd",
|
|
11438
|
+
d: "M7.65942 6.39596C8.74782 4.08615 10.6786 2.22955 13.5313 2.22974C14.804 2.22982 15.7703 2.79884 16.392 3.68151C16.8584 4.34358 17.1228 5.16598 17.2189 6.04043L20.4245 8.22104L21.2307 20.8941L17.2299 22.1823L17.2235 22.1843L17.2231 22.235L17.0401 22.2175C16.9647 22.2215 16.8902 22.2141 16.8188 22.1962L2.67615 20.8386L4.98419 6.62784L7.65942 6.39596ZM13.4688 3.70764C14.2174 3.70769 14.7516 4.01979 15.1248 4.54955C15.3433 4.85983 15.5097 5.25215 15.6139 5.70651L9.42113 6.24326C10.3579 4.6749 11.7094 3.70753 13.4688 3.70764ZM15.8126 7.20062C15.8165 7.20852 15.8206 7.21633 15.8249 7.22405L15.7343 20.5852L4.41346 19.4985L6.27752 8.02136L15.8099 7.19514C15.8108 7.19697 15.8117 7.1988 15.8126 7.20062ZM17.2342 20.605L19.6596 19.8241L18.9741 9.04857L17.3202 7.92347L17.2342 20.605Z",
|
|
11439
|
+
fill: color
|
|
11440
|
+
}));
|
|
11441
|
+
};
|
|
11442
|
+
|
|
11339
11443
|
exports.Action = Action;
|
|
11340
11444
|
exports.ActionMarkConversationAsDone = ActionMarkConversationAsDone;
|
|
11341
11445
|
exports.Activecampaign = Activecampaign;
|
|
@@ -11528,6 +11632,8 @@
|
|
|
11528
11632
|
exports.MosaicView = MosaicView;
|
|
11529
11633
|
exports.MoveTo = MoveTo;
|
|
11530
11634
|
exports.Nationality = Nationality;
|
|
11635
|
+
exports.NavCollapse = NavCollapse;
|
|
11636
|
+
exports.NavExpand = NavExpand;
|
|
11531
11637
|
exports.NewCuFs = NewCuFs;
|
|
11532
11638
|
exports.NewMessage = NewMessage;
|
|
11533
11639
|
exports.NewOrphanMobile = NewOrphanMobile;
|
|
@@ -11585,6 +11691,7 @@
|
|
|
11585
11691
|
exports.RealEstate = RealEstate;
|
|
11586
11692
|
exports.Redo = Redo;
|
|
11587
11693
|
exports.Reels = Reels;
|
|
11694
|
+
exports.Retail = Retail;
|
|
11588
11695
|
exports.Retry = Retry;
|
|
11589
11696
|
exports.ReturnKey = ReturnKey;
|
|
11590
11697
|
exports.Rules = Rules;
|