@trafilea/afrodita-components 5.0.0-beta.50 → 5.0.0-beta.53
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/build/index.d.ts +42 -8
- package/build/index.esm.js +97 -18
- package/build/index.esm.js.map +1 -1
- package/build/index.js +97 -18
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -59,11 +59,6 @@ declare type SizeOption = {
|
|
|
59
59
|
description: string;
|
|
60
60
|
disabled?: boolean;
|
|
61
61
|
};
|
|
62
|
-
declare type Color = {
|
|
63
|
-
primaryColor: string;
|
|
64
|
-
secondaryColor?: string;
|
|
65
|
-
tertiaryColor?: string;
|
|
66
|
-
};
|
|
67
62
|
declare type Pattern = {
|
|
68
63
|
url: string;
|
|
69
64
|
};
|
|
@@ -71,7 +66,7 @@ declare type ColorPickerOption = {
|
|
|
71
66
|
label: string;
|
|
72
67
|
description: string;
|
|
73
68
|
meta: {
|
|
74
|
-
color?:
|
|
69
|
+
color?: string[];
|
|
75
70
|
pattern?: Pattern;
|
|
76
71
|
};
|
|
77
72
|
};
|
|
@@ -156,6 +151,8 @@ declare const Edit: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
156
151
|
|
|
157
152
|
declare const SignOut: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
158
153
|
|
|
154
|
+
declare const Add: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
155
|
+
|
|
159
156
|
declare const Actions_Check: typeof Check;
|
|
160
157
|
declare const Actions_ClearLight: typeof ClearLight;
|
|
161
158
|
declare const Actions_LightExclamation: typeof LightExclamation;
|
|
@@ -167,6 +164,7 @@ declare const Actions_Trash: typeof Trash;
|
|
|
167
164
|
declare const Actions_Warning: typeof Warning;
|
|
168
165
|
declare const Actions_Edit: typeof Edit;
|
|
169
166
|
declare const Actions_SignOut: typeof SignOut;
|
|
167
|
+
declare const Actions_Add: typeof Add;
|
|
170
168
|
declare namespace Actions {
|
|
171
169
|
export {
|
|
172
170
|
Actions_Check as Check,
|
|
@@ -180,6 +178,7 @@ declare namespace Actions {
|
|
|
180
178
|
Actions_Warning as Warning,
|
|
181
179
|
Actions_Edit as Edit,
|
|
182
180
|
Actions_SignOut as SignOut,
|
|
181
|
+
Actions_Add as Add,
|
|
183
182
|
};
|
|
184
183
|
}
|
|
185
184
|
|
|
@@ -484,6 +483,39 @@ declare namespace Emoji {
|
|
|
484
483
|
};
|
|
485
484
|
}
|
|
486
485
|
|
|
486
|
+
declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
487
|
+
|
|
488
|
+
declare const PersonalStylist: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
489
|
+
|
|
490
|
+
declare const Community: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
491
|
+
|
|
492
|
+
declare const VIP: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
493
|
+
|
|
494
|
+
declare const DealsOffers: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
495
|
+
|
|
496
|
+
declare const StyleFashionContent: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
497
|
+
|
|
498
|
+
declare const MembersOnlyDiscount: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
499
|
+
|
|
500
|
+
declare const MyAccount_FreeShipping: typeof FreeShipping;
|
|
501
|
+
declare const MyAccount_PersonalStylist: typeof PersonalStylist;
|
|
502
|
+
declare const MyAccount_Community: typeof Community;
|
|
503
|
+
declare const MyAccount_VIP: typeof VIP;
|
|
504
|
+
declare const MyAccount_DealsOffers: typeof DealsOffers;
|
|
505
|
+
declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
|
|
506
|
+
declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
|
|
507
|
+
declare namespace MyAccount {
|
|
508
|
+
export {
|
|
509
|
+
MyAccount_FreeShipping as FreeShipping,
|
|
510
|
+
MyAccount_PersonalStylist as PersonalStylist,
|
|
511
|
+
MyAccount_Community as Community,
|
|
512
|
+
MyAccount_VIP as VIP,
|
|
513
|
+
MyAccount_DealsOffers as DealsOffers,
|
|
514
|
+
MyAccount_StyleFashionContent as StyleFashionContent,
|
|
515
|
+
MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
|
|
516
|
+
};
|
|
517
|
+
}
|
|
518
|
+
|
|
487
519
|
declare type IconType = ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
488
520
|
declare const Icon: {
|
|
489
521
|
Custom: typeof Custom;
|
|
@@ -498,6 +530,7 @@ declare const Icon: {
|
|
|
498
530
|
Payment: typeof Payment;
|
|
499
531
|
SlideDots: typeof SlideDots;
|
|
500
532
|
Emoji: typeof Emoji;
|
|
533
|
+
MyAccount: typeof MyAccount;
|
|
501
534
|
};
|
|
502
535
|
|
|
503
536
|
interface CardBodyProps {
|
|
@@ -613,9 +646,10 @@ interface PriceLabelProps {
|
|
|
613
646
|
color?: string;
|
|
614
647
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
615
648
|
discount?: DiscountTagProps;
|
|
649
|
+
finalPriceStyled?: boolean;
|
|
616
650
|
testId?: string;
|
|
617
651
|
}
|
|
618
|
-
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, size, }: PriceLabelProps) => JSX.Element;
|
|
652
|
+
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, size, }: PriceLabelProps) => JSX.Element;
|
|
619
653
|
|
|
620
654
|
interface ColorPickerProps {
|
|
621
655
|
options: ColorPickerOption[];
|
|
@@ -1872,4 +1906,4 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
1872
1906
|
currency?: string | undefined;
|
|
1873
1907
|
}) => string;
|
|
1874
1908
|
|
|
1875
|
-
export { Accordion, AmazonButton, AssetsProvider, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection,
|
|
1909
|
+
export { Accordion, AmazonButton, AssetsProvider, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitPredictor, Icon, IconButton, IconProps, IconWithOpacityProps, Image, ImageType, Input, InputValidationType, Modal, MultiColorPicker, OfferBanner, OrderBar, Overlay, PackSelector, Pagination, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, ProductGallery, ProductGalleryMobile, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, Rating, Review, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, Tab, Tabs, Text, TextButton, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, WithTestId, decimalFormat, formatPrice, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
|
package/build/index.esm.js
CHANGED
|
@@ -127,6 +127,11 @@ var SignOut = function (_a) {
|
|
|
127
127
|
return (jsx$1(IconWrapper, __assign$1({ width: width, height: height, viewBoxX: 21, viewBoxY: 16, title: "Sign out" }, { children: jsx$1("path", { d: "M16.5939 15.5L13.3949 15.5C13.1435 15.5 12.9379 15.2891 12.9379 15.0313L12.9379 14.0938C12.9379 13.8359 13.1435 13.625 13.3949 13.625L16.5939 13.625C17.6032 13.625 18.422 12.7852 18.422 11.75L18.422 4.25C18.422 3.21484 17.6032 2.375 16.5939 2.375L13.3949 2.375C13.1435 2.375 12.9379 2.16406 12.9379 1.90625L12.9379 0.96875C12.9379 0.710937 13.1435 0.499999 13.3949 0.499999L16.5939 0.499998C18.6124 0.499998 20.25 2.17969 20.25 4.25L20.25 11.75C20.25 13.8203 18.6124 15.5 16.5939 15.5ZM7.7927 14.7383L8.53915 13.9727C8.72195 13.7852 8.71814 13.4844 8.53153 13.3047L4.22422 9.01563L13.6995 9.01563C13.9509 9.01563 14.1565 8.80469 14.1565 8.54688L14.1565 7.45312C14.1565 7.19531 13.9509 6.98437 13.6995 6.98437L4.22422 6.98438L8.53153 2.69922C8.71433 2.51562 8.71814 2.21484 8.53915 2.03125L7.7927 1.26563C7.6137 1.08203 7.32427 1.08203 7.14527 1.26563L0.88425 7.67188C0.705255 7.85547 0.705255 8.15234 0.88425 8.33594L7.14527 14.7422C7.32427 14.9219 7.6137 14.9219 7.7927 14.7383Z", fill: fill }, void 0) }), void 0));
|
|
128
128
|
};
|
|
129
129
|
|
|
130
|
+
var Add = function (_a) {
|
|
131
|
+
var height = _a.height, width = _a.width, fill = _a.fill;
|
|
132
|
+
return (jsx$1(IconWrapper, __assign$1({ width: width, height: height, viewBoxX: 20, viewBoxY: 20, title: "add" }, { children: jsx$1("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.75 0C9.05964 0 8.5 0.559644 8.5 1.25V8.5H1.25C0.559644 8.5 0 9.05964 0 9.75C0 10.4404 0.559644 11 1.25 11H8.5V18.75C8.5 19.4404 9.05964 20 9.75 20C10.4404 20 11 19.4404 11 18.75V11H18.75C19.4404 11 20 10.4404 20 9.75C20 9.05964 19.4404 8.5 18.75 8.5H11V1.25C11 0.559644 10.4404 0 9.75 0Z", fill: fill }, void 0) }), void 0));
|
|
133
|
+
};
|
|
134
|
+
|
|
130
135
|
var Actions = /*#__PURE__*/Object.freeze({
|
|
131
136
|
__proto__: null,
|
|
132
137
|
Check: Check$1,
|
|
@@ -138,7 +143,8 @@ var Actions = /*#__PURE__*/Object.freeze({
|
|
|
138
143
|
Trash: Trash,
|
|
139
144
|
Warning: Warning,
|
|
140
145
|
Edit: Edit,
|
|
141
|
-
SignOut: SignOut
|
|
146
|
+
SignOut: SignOut,
|
|
147
|
+
Add: Add
|
|
142
148
|
});
|
|
143
149
|
|
|
144
150
|
var FitPredictor$1 = function (_a) {
|
|
@@ -535,6 +541,52 @@ var Emoji = /*#__PURE__*/Object.freeze({
|
|
|
535
541
|
Thinking: Thinking
|
|
536
542
|
});
|
|
537
543
|
|
|
544
|
+
var FreeShipping$1 = function (_a) {
|
|
545
|
+
var height = _a.height, width = _a.width, fill = _a.fill;
|
|
546
|
+
return (jsxs$1(IconWrapper, __assign$1({ width: width, height: height, viewBoxX: 65, viewBoxY: 56, title: "Free Shipping" }, { children: [jsx$1("path", { d: "M62.9346 0.099998H17.3476C16.9811 0.100936 16.6299 0.246929 16.3708 0.506055C16.1117 0.765182 15.9657 1.11637 15.9647 1.48283V26.6616L15.5382 26.7363C13.1063 27.1534 10.8893 28.3873 9.25324 30.2342L9.09683 30.4048H7.36563V28.0018C7.36469 27.6356 7.21859 27.2848 6.95936 27.0263C6.70013 26.7677 6.34894 26.6225 5.98281 26.6225H2.07251C1.71835 26.6405 1.38463 26.7938 1.14032 27.0509C0.896007 27.3079 0.759778 27.6489 0.759778 28.0035C0.759778 28.3582 0.896007 28.6992 1.14032 28.9563C1.38463 29.2133 1.71835 29.3666 2.07251 29.3846H4.60709V53.1379H2.07251C1.70576 53.1379 1.35404 53.2836 1.09471 53.5429C0.835383 53.8022 0.689697 54.154 0.689697 54.5207C0.689697 54.8875 0.835383 55.2392 1.09471 55.4985C1.35404 55.7579 1.70576 55.9035 2.07251 55.9035H5.98281C6.34926 55.9026 6.70045 55.7566 6.95958 55.4975C7.2187 55.2384 7.3647 54.8872 7.36563 54.5207V52.1141H9.55542L9.63005 52.139C14.3615 53.6356 17.1805 54.5456 18.8726 55.0895C21.4001 55.9035 21.4143 55.9071 21.6311 55.9035H47.6595C48.4862 55.9015 49.3003 55.7016 50.034 55.3206C50.7676 54.9396 51.3993 54.3885 51.8764 53.7134C52.3535 53.0383 52.6621 52.2588 52.7763 51.44C52.8906 50.6213 52.8072 49.7871 52.5332 49.0072L52.2914 48.3247H62.9559C63.322 48.3247 63.6732 48.1795 63.9324 47.9209C64.1917 47.6623 64.3378 47.3115 64.3387 46.9454V1.48283C64.3383 1.29956 64.3015 1.1182 64.2305 0.949236C64.1595 0.780276 64.0557 0.627067 63.9251 0.498472C63.7946 0.369877 63.6398 0.26845 63.4697 0.200053C63.2997 0.131657 63.1178 0.0976479 62.9346 0.099998ZM35.7793 2.86565H44.3784V8.3223H35.7793V2.86565ZM47.656 53.1379H21.8586L21.7875 53.113C17.0596 51.6164 14.2371 50.7064 12.545 50.1625C10.0175 49.3485 10.0104 49.3591 9.78647 49.3484H7.36563V33.1705H9.7687C9.98543 33.1712 10.1993 33.121 10.3932 33.0241C10.587 32.9272 10.7554 32.7862 10.8849 32.6124C11.6326 31.6016 12.607 30.7803 13.7296 30.2143C14.8523 29.6483 16.0921 29.3535 17.3493 29.3535C18.6066 29.3535 19.8464 29.6483 20.9691 30.2143C22.0917 30.7803 23.0661 31.6016 23.8138 32.6124C23.9416 32.7865 24.1086 32.9281 24.3013 33.0256C24.494 33.1232 24.7069 33.174 24.9229 33.174H34.3929C34.709 33.174 35.0219 33.2363 35.3139 33.3572C35.6059 33.4782 35.8712 33.6554 36.0947 33.8789C36.3181 34.1024 36.4954 34.3677 36.6163 34.6597C36.7373 34.9517 36.7995 35.2646 36.7995 35.5806C36.7995 35.8967 36.7373 36.2096 36.6163 36.5016C36.4954 36.7936 36.3181 37.0589 36.0947 37.2824C35.8712 37.5059 35.6059 37.6831 35.3139 37.8041C35.0219 37.925 34.709 37.9873 34.3929 37.9873H23.0175C22.6504 37.9873 22.2983 38.1328 22.0384 38.3921C21.7785 38.6513 21.6321 39.003 21.6311 39.3701C21.6339 41.7457 22.5792 44.0231 24.2593 45.7026C25.9394 47.3821 28.2172 48.3263 30.5928 48.3282H47.656C48.2942 48.3282 48.9064 48.5818 49.3577 49.0331C49.809 49.4844 50.0626 50.0966 50.0626 50.7348C50.0626 51.3731 49.809 51.9852 49.3577 52.4366C48.9064 52.8879 48.2942 53.1415 47.656 53.1415V53.1379ZM61.5517 45.559H30.607C29.3268 45.557 28.0786 45.1594 27.033 44.4206C25.9875 43.6818 25.1959 42.6379 24.7665 41.4319L24.5247 40.7493H34.3929C35.7647 40.7493 37.0803 40.2044 38.0503 39.2344C39.0203 38.2644 39.5652 36.9489 39.5652 35.5771C39.5652 34.2053 39.0203 32.8897 38.0503 31.9198C37.0803 30.9498 35.7647 30.4048 34.3929 30.4048H25.5948L25.4419 30.2342C23.8043 28.3872 21.5863 27.1534 19.1534 26.7363L18.7304 26.6616V2.86565H33.0137V9.69089C33.0137 10.057 33.1589 10.4082 33.4174 10.6674C33.676 10.9267 34.0268 11.0728 34.3929 11.0737H45.7683C46.1351 11.0737 46.4868 10.928 46.7461 10.6687C47.0055 10.4094 47.1512 10.0576 47.1512 9.69089V2.86565H61.5588L61.5517 45.559Z", fill: fill }, void 0), jsx$1("path", { d: "M25.2109 18.6313V20.0248H28.3213C28.5986 20.0406 28.8593 20.162 29.05 20.3639C29.2407 20.5658 29.347 20.833 29.347 21.1107C29.347 21.3885 29.2407 21.6557 29.05 21.8576C28.8593 22.0595 28.5986 22.1809 28.3213 22.1968H25.2109V24.4399C25.2196 24.5991 25.1959 24.7585 25.141 24.9082C25.0861 25.058 25.0012 25.1949 24.8916 25.3108C24.7819 25.4266 24.6498 25.5189 24.5034 25.5819C24.3569 25.645 24.199 25.6775 24.0396 25.6775C23.8801 25.6775 23.7222 25.645 23.5757 25.5819C23.4293 25.5189 23.2972 25.4266 23.1875 25.3108C23.0779 25.1949 22.9931 25.058 22.9382 24.9082C22.8833 24.7585 22.8595 24.5991 22.8682 24.4399V17.6182C22.8668 17.4637 22.8962 17.3105 22.9546 17.1676C23.0131 17.0246 23.0994 16.8947 23.2087 16.7855C23.3179 16.6763 23.4478 16.5899 23.5907 16.5314C23.7337 16.473 23.8869 16.4436 24.0413 16.445H28.8759C29.0237 16.4366 29.1717 16.4584 29.3108 16.5092C29.45 16.5599 29.5773 16.6385 29.6849 16.7402C29.7926 16.8419 29.8784 16.9645 29.937 17.1005C29.9956 17.2365 30.0258 17.383 30.0258 17.5311C30.0258 17.6791 29.9956 17.8256 29.937 17.9616C29.8784 18.0976 29.7926 18.2202 29.6849 18.3219C29.5773 18.4236 29.45 18.5022 29.3108 18.5529C29.1717 18.6037 29.0237 18.6255 28.8759 18.6171L25.2109 18.6313Z", fill: fill }, void 0), jsx$1("path", { d: "M37.8056 22.275L38.0544 22.115C38.4837 21.8369 38.8313 21.4498 39.0618 20.9932C39.2923 20.5366 39.3973 20.027 39.3661 19.5164C39.3807 19.1199 39.3158 18.7244 39.1754 18.3533C39.035 17.9821 38.8219 17.6427 38.5485 17.3551C38.1833 17.0246 37.7561 16.77 37.2918 16.6058C36.8274 16.4417 36.335 16.3713 35.8433 16.3989H32.843C32.6827 16.3974 32.5237 16.428 32.3753 16.4888C32.2269 16.5496 32.0921 16.6395 31.9789 16.753C31.8657 16.8666 31.7763 17.0016 31.7159 17.1502C31.6555 17.2987 31.6254 17.4578 31.6273 17.6182V24.4256C31.6273 24.7481 31.7554 25.0573 31.9834 25.2853C32.2114 25.5133 32.5206 25.6414 32.843 25.6414C33.1655 25.6414 33.4747 25.5133 33.7027 25.2853C33.9307 25.0573 34.0588 24.7481 34.0588 24.4256V22.8046H35.1821L36.9595 25.0477C37.0885 25.2325 37.2604 25.3833 37.4603 25.4873C37.6602 25.5913 37.8823 25.6454 38.1077 25.6449C38.4138 25.6468 38.7083 25.5275 38.9268 25.3131C39.1452 25.0986 39.2699 24.8064 39.2737 24.5003C39.2683 24.1673 39.1419 23.8476 38.9182 23.6009L37.8056 22.275ZM36.9062 19.6409C36.9062 19.9288 36.7924 20.5936 35.7189 20.5936H34.0588V18.6491H35.6798C36.4938 18.6491 36.9062 18.9726 36.9062 19.616V19.6409Z", fill: fill }, void 0), jsx$1("path", { d: "M48.4488 24.4647C48.4469 24.7592 48.3284 25.0409 48.1191 25.2481C47.9099 25.4554 47.6271 25.5712 47.3326 25.5703H42.4731C42.3131 25.5717 42.1544 25.5412 42.0062 25.4806C41.8581 25.42 41.7235 25.3305 41.6103 25.2173C41.4971 25.1042 41.4076 24.9696 41.347 24.8214C41.2864 24.6733 41.256 24.5146 41.2574 24.3545V17.6004C41.2555 17.44 41.2856 17.2809 41.346 17.1324C41.4064 16.9838 41.4958 16.8488 41.609 16.7352C41.7223 16.6217 41.857 16.5319 42.0054 16.471C42.1538 16.4102 42.3128 16.3796 42.4731 16.3811H47.2615C47.5566 16.3811 47.8396 16.4983 48.0482 16.7069C48.2569 16.9156 48.3741 17.1986 48.3741 17.4937C48.3741 17.7888 48.2569 18.0718 48.0482 18.2805C47.8396 18.4892 47.5566 18.6064 47.2615 18.6064H43.6782V19.8257H46.7034C46.8546 19.8171 47.0059 19.8395 47.1481 19.8915C47.2903 19.9434 47.4204 20.0239 47.5305 20.1279C47.6405 20.2319 47.7282 20.3572 47.7881 20.4963C47.848 20.6353 47.8789 20.7851 47.8789 20.9366C47.8789 21.088 47.848 21.2378 47.7881 21.3768C47.7282 21.5159 47.6405 21.6412 47.5305 21.7452C47.4204 21.8492 47.2903 21.9297 47.1481 21.9816C47.0059 22.0336 46.8546 22.056 46.7034 22.0474H43.6782V23.3272H47.3219C47.4711 23.3262 47.6189 23.3551 47.7568 23.412C47.8946 23.469 48.0197 23.5529 48.1247 23.6589C48.2297 23.7648 48.3124 23.8907 48.3681 24.0291C48.4237 24.1675 48.4512 24.3156 48.4488 24.4647Z", fill: fill }, void 0), jsx$1("path", { d: "M57.414 24.4647C57.4121 24.7592 57.2936 25.0409 57.0843 25.2481C56.8751 25.4554 56.5923 25.5712 56.2978 25.5703H51.449C51.2884 25.5727 51.1289 25.5429 50.9799 25.4827C50.8309 25.4225 50.6955 25.3332 50.5816 25.2199C50.4676 25.1066 50.3775 24.9717 50.3165 24.8231C50.2554 24.6745 50.2247 24.5152 50.2262 24.3545V17.6004C50.2243 17.44 50.2544 17.2809 50.3148 17.1324C50.3751 16.9838 50.4646 16.8488 50.5778 16.7352C50.691 16.6217 50.8258 16.5319 50.9742 16.471C51.1225 16.4102 51.2815 16.3796 51.4419 16.3811H56.2302C56.5253 16.3811 56.8083 16.4983 57.017 16.7069C57.2257 16.9156 57.3429 17.1986 57.3429 17.4937C57.3429 17.7888 57.2257 18.0718 57.017 18.2805C56.8083 18.4892 56.5253 18.6064 56.2302 18.6064H52.6541V19.8257H55.6792C55.8304 19.8171 55.9817 19.8395 56.1239 19.8915C56.2662 19.9434 56.3963 20.0239 56.5063 20.1279C56.6164 20.2319 56.704 20.3572 56.7639 20.4963C56.8238 20.6353 56.8548 20.7851 56.8548 20.9366C56.8548 21.088 56.8238 21.2378 56.7639 21.3769C56.704 21.5159 56.6164 21.6413 56.5063 21.7452C56.3963 21.8492 56.2662 21.9297 56.1239 21.9817C55.9817 22.0336 55.8304 22.056 55.6792 22.0474H52.6541V23.3272H56.2978C56.446 23.3276 56.5927 23.3575 56.7293 23.4151C56.8659 23.4727 56.9898 23.5568 57.0936 23.6627C57.1975 23.7685 57.2792 23.8939 57.3342 24.0316C57.3892 24.1693 57.4163 24.3165 57.414 24.4647Z", fill: fill }, void 0)] }), void 0));
|
|
547
|
+
};
|
|
548
|
+
|
|
549
|
+
var PersonalStylist = function (_a) {
|
|
550
|
+
var height = _a.height, width = _a.width, fill = _a.fill;
|
|
551
|
+
return (jsxs$1(IconWrapper, __assign$1({ width: width, height: height, viewBoxX: 64, viewBoxY: 64, title: "Personal Stylist" }, { children: [jsx$1("path", { d: "M46.4415 21.0956H42.2895C41.1697 8.65372 33.6157 0.335449 23.4489 0.335449C12.2548 0.335449 4.43775 10.2178 4.43775 24.3625C4.34326 30.2408 6.13341 35.9949 9.54602 40.7822C9.66316 40.9405 9.81308 41.0717 9.98556 41.1668C10.158 41.2618 10.349 41.3186 10.5454 41.3331C10.7418 41.3476 10.9391 41.3195 11.1236 41.2508C11.3082 41.1821 11.4758 41.0744 11.6149 40.935C12.9204 39.6264 14.4416 38.5525 16.1118 37.7606C16.3713 37.981 16.6379 38.1907 16.9081 38.3898C16.6619 39.2732 16.1825 40.0741 15.5201 40.7083C14.8577 41.3426 14.0368 41.7868 13.1435 41.9944L9.90151 42.5062C7.33062 42.8729 4.98188 44.1651 3.29593 46.1404C1.60998 48.1156 0.702688 50.6381 0.74429 53.2347V62.2959C0.744288 62.6592 0.888361 63.0077 1.14492 63.2649C1.40148 63.5222 1.7496 63.6672 2.11291 63.6681H44.9165C45.2798 63.6672 45.6279 63.5222 45.8844 63.2649C46.141 63.0077 46.2851 62.6592 46.2851 62.2959V56.4945L53.4196 53.2454C56.9178 51.6519 59.7652 48.9089 61.4883 45.4727C63.2115 42.0365 63.7065 38.114 62.8911 34.3574C62.0757 30.6008 59.9991 27.2365 57.0065 24.8238C54.0139 22.4111 50.2855 21.0955 46.4415 21.0956ZM40.0144 46.4237C37.2274 46.4208 34.5554 45.3125 32.5847 43.3418C30.614 41.3711 29.5056 38.699 29.5028 35.9121C29.5065 32.7369 30.7695 29.6929 33.0147 27.4478C35.2598 25.2026 38.3038 23.9396 41.479 23.9359H46.4557C49.6511 23.9362 52.75 25.0302 55.2374 27.036C57.7247 29.0418 59.4506 31.8385 60.1281 34.9612C60.8055 38.0839 60.3937 41.3444 58.9612 44.2006C57.5286 47.0568 55.1616 49.3366 52.2536 50.661L46.4024 53.3271V52.7975C46.3958 51.1066 45.7202 49.487 44.5233 48.2927C43.3263 47.0984 41.7053 46.4265 40.0144 46.4237ZM22.6989 40.6755C22.7651 40.6811 22.8317 40.6811 22.8979 40.6755H23.9644H24.1563C25.2165 40.5255 26.2557 40.2523 27.2526 39.8615C27.5866 40.9254 28.0511 41.9439 28.6354 42.8937L23.5094 47.6679L17.7754 42.3356C18.4547 41.5903 18.9866 40.723 19.3431 39.7797C20.4185 40.2215 21.5464 40.5226 22.6989 40.6755ZM36.9395 21.8101C37.0197 20.4901 37.0197 19.1665 36.9395 17.8465C36.9157 17.544 36.7921 17.2581 36.5881 17.0335C36.3842 16.8089 36.1114 16.6585 35.8126 16.6058C30.7967 15.7243 29.8796 11.7215 29.844 11.5545C29.7898 11.2821 29.654 11.0327 29.4547 10.8394C29.2553 10.6461 29.0019 10.518 28.7281 10.4721C28.4542 10.4262 28.1728 10.4647 27.9214 10.5824C27.6699 10.7002 27.4602 10.8917 27.3201 11.1314C27.2988 11.167 25.0948 14.6862 19.3502 16.3855C16.8114 17.0107 14.1687 17.0894 11.5972 16.6165C11.4059 16.5776 11.2084 16.5799 11.0181 16.6234C10.8278 16.6669 10.6489 16.7504 10.4935 16.8685C10.338 16.9866 10.2096 17.1366 10.1167 17.3083C10.0238 17.48 9.96862 17.6695 9.95484 17.8643C9.87308 19.0231 9.30784 29.2397 14.1815 35.6739C13.0153 36.2948 11.9179 37.0372 10.9075 37.8885C8.4154 33.8279 7.12491 29.1442 7.18562 24.3802C7.18562 11.8424 13.8758 3.08333 23.456 3.08333C32.0836 3.08333 38.5356 10.3636 39.5665 21.2129C38.6731 21.3305 37.7925 21.5304 36.9359 21.8101H36.9395ZM12.621 19.5386C15.12 19.8281 17.6511 19.6522 20.0861 19.0196C23.1024 18.2137 25.8589 16.6413 28.0879 14.4552C28.7556 15.5953 29.6435 16.5911 30.7 17.3846C31.7564 18.178 32.9603 18.7531 34.2413 19.0765C34.2766 20.4024 34.2362 21.7293 34.1205 23.0507C31.8566 24.3486 29.9746 26.2201 28.6641 28.4767C27.3536 30.7333 26.6607 33.2954 26.6554 35.905C26.6554 36.2924 26.6731 36.6941 26.7122 37.1029C25.8087 37.5156 24.8512 37.7981 23.8684 37.9419H22.9904C13.275 36.4951 12.5676 23.8648 12.6174 19.5386H12.621ZM24.4478 50.5437L30.3168 45.0728C31.5646 46.3935 33.0682 47.4461 34.7361 48.1667C36.404 48.8873 38.2011 49.2606 40.0179 49.264C40.8113 49.2685 41.5803 49.5384 42.2026 50.0305C42.8249 50.5227 43.2647 51.2089 43.4519 51.9799C43.5151 52.3952 43.5472 52.8146 43.5479 53.2347V60.9202H3.47795V53.2276C3.46488 51.6028 3.94195 50.0119 4.84689 48.6624C5.75182 47.3129 7.04259 46.2676 8.55068 45.6629C9.12487 45.4479 9.7209 45.2966 10.3281 45.2115L13.6625 44.6854C14.3287 44.5423 14.973 44.3116 15.5785 43.9993L22.5851 50.5402C22.843 50.7638 23.1727 50.8872 23.514 50.8879C23.8554 50.8885 24.1855 50.7664 24.4443 50.5437H24.4478Z", fill: fill }, void 0), jsx$1("path", { d: "M37.1811 37.8174H35.0802L35.8942 37.1883C37.2842 36.1218 37.9383 35.4606 37.9383 34.1169C37.9383 32.6203 36.8256 31.6285 35.1726 31.6285C34.6799 31.6078 34.1891 31.7027 33.7397 31.9058C33.2903 32.1089 32.8947 32.4145 32.5847 32.7981C32.4372 32.975 32.3545 33.197 32.3501 33.4273C32.3516 33.6145 32.4092 33.797 32.5153 33.9513C32.6214 34.1056 32.7713 34.2247 32.9456 34.2931C33.1199 34.3615 33.3107 34.3762 33.4935 34.3353C33.6762 34.2944 33.8426 34.1998 33.9711 34.0636C34.3799 33.6228 34.682 33.4664 35.066 33.4664C35.1757 33.4527 35.2871 33.4638 35.392 33.4987C35.4969 33.5336 35.5927 33.5915 35.6724 33.6681C35.7521 33.7448 35.8137 33.8382 35.8527 33.9417C35.8917 34.0452 35.9071 34.156 35.8978 34.2662C35.8978 34.7852 35.6312 35.1442 34.6607 35.9334L32.5278 37.6859C32.3768 37.7976 32.2537 37.9426 32.168 38.1097C32.0823 38.2769 32.0363 38.4615 32.0337 38.6493C32.0329 38.785 32.0608 38.9193 32.1155 39.0434C32.1703 39.1676 32.2506 39.2787 32.3513 39.3697C32.452 39.4606 32.5707 39.5293 32.6998 39.5712C32.8288 39.613 32.9653 39.6272 33.1002 39.6126H37.1846C37.308 39.6237 37.4324 39.6089 37.5497 39.5693C37.6671 39.5296 37.7749 39.466 37.8663 39.3824C37.9578 39.2988 38.0308 39.1971 38.0807 39.0837C38.1307 38.9703 38.1565 38.8478 38.1565 38.7239C38.1565 38.6001 38.1307 38.4775 38.0807 38.3642C38.0308 38.2508 37.9578 38.1491 37.8663 38.0655C37.7749 37.9819 37.6671 37.9182 37.5497 37.8786C37.4324 37.8389 37.308 37.8242 37.1846 37.8352L37.1811 37.8174Z", fill: fill }, void 0), jsx$1("path", { d: "M43.7789 36.2818H43.5585V32.5848C43.5595 32.4574 43.535 32.3311 43.4865 32.2133C43.438 32.0955 43.3664 31.9887 43.276 31.8989C43.1856 31.8092 43.0782 31.7384 42.9601 31.6907C42.8419 31.6431 42.7155 31.6195 42.5881 31.6214C42.3574 31.6182 42.1296 31.6732 41.9258 31.7813C41.722 31.8894 41.5488 32.0472 41.4221 32.24L38.1552 36.0365C37.8869 36.3078 37.733 36.6717 37.7251 37.0532C37.7264 37.1801 37.7531 37.3055 37.8036 37.422C37.8541 37.5385 37.9274 37.6437 38.0192 37.7315C38.1109 37.8192 38.2192 37.8878 38.3378 37.9331C38.4564 37.9784 38.5829 37.9995 38.7098 37.9952H41.6247V38.7062C41.6247 38.9626 41.7266 39.2085 41.9079 39.3899C42.0893 39.5712 42.3352 39.6731 42.5916 39.6731C42.8481 39.6731 43.094 39.5712 43.2753 39.3899C43.4567 39.2085 43.5585 38.9626 43.5585 38.7062V37.9952H43.7789C43.8911 37.9971 44.0024 37.9766 44.1065 37.9349C44.2106 37.8932 44.3054 37.8311 44.3851 37.7523C44.4649 37.6735 44.5282 37.5796 44.5712 37.476C44.6142 37.3724 44.6361 37.2613 44.6357 37.1492C44.6371 37.0358 44.6159 36.9232 44.5735 36.818C44.5311 36.7129 44.4682 36.6172 44.3885 36.5365C44.3088 36.4558 44.2139 36.3917 44.1093 36.348C44.0046 36.3043 43.8923 36.2818 43.7789 36.2818ZM41.6247 34.5968V36.2818H40.2028L41.6247 34.5968Z", fill: fill }, void 0), jsx$1("path", { d: "M50.3162 31.3974C50.3106 31.1862 50.2228 30.9855 50.0714 30.8381C49.92 30.6907 49.717 30.6082 49.5057 30.6083C49.3535 30.6091 49.2049 30.6547 49.0785 30.7394C48.952 30.8241 48.8533 30.9442 48.7947 31.0846L44.5894 39.8686C44.5336 39.9891 44.5033 40.1198 44.5005 40.2525C44.506 40.4637 44.5939 40.6645 44.7453 40.8119C44.8967 40.9593 45.0997 41.0417 45.311 41.0417C45.466 41.0434 45.618 40.9991 45.7478 40.9143C45.8775 40.8295 45.9791 40.708 46.0397 40.5653L50.2451 31.7778C50.2946 31.6572 50.3188 31.5278 50.3162 31.3974Z", fill: fill }, void 0), jsx$1("path", { d: "M51.8483 33.509H54.422L51.7807 38.1303C51.6779 38.3147 51.6184 38.5202 51.6066 38.731C51.61 38.8601 51.6397 38.9872 51.6939 39.1044C51.7482 39.2216 51.8257 39.3265 51.9219 39.4127C52.0181 39.4989 52.1308 39.5645 52.2533 39.6056C52.3757 39.6467 52.5052 39.6624 52.6339 39.6517C52.8378 39.6454 53.0355 39.5808 53.2037 39.4655C53.372 39.3502 53.5036 39.189 53.583 39.0012L56.6046 33.5197C56.7594 33.248 56.8471 32.9434 56.8606 32.631C56.8685 32.5074 56.8499 32.3836 56.806 32.2678C56.762 32.152 56.6939 32.047 56.606 31.9598C56.5181 31.8725 56.4125 31.8051 56.2964 31.7621C56.1803 31.7191 56.0563 31.7014 55.9328 31.7103H51.8483C51.7249 31.6992 51.6006 31.714 51.4832 31.7537C51.3658 31.7933 51.258 31.8569 51.1666 31.9405C51.0752 32.0241 51.0022 32.1259 50.9522 32.2392C50.9023 32.3526 50.8765 32.4751 50.8765 32.599C50.8765 32.7229 50.9023 32.8454 50.9522 32.9588C51.0022 33.0721 51.0752 33.1738 51.1666 33.2574C51.258 33.341 51.3658 33.4047 51.4832 33.4443C51.6006 33.484 51.7249 33.4987 51.8483 33.4877V33.509Z", fill: fill }, void 0)] }), void 0));
|
|
552
|
+
};
|
|
553
|
+
|
|
554
|
+
var Community = function (_a) {
|
|
555
|
+
var height = _a.height, width = _a.width, fill = _a.fill;
|
|
556
|
+
return (jsx$1(IconWrapper, __assign$1({ width: width, height: height, viewBoxX: 68, viewBoxY: 60, title: "Community" }, { children: jsx$1("path", { xmlns: "http://www.w3.org/2000/svg", d: "M66.6849 15.3168L66.5676 14.7516C66.3684 13.9024 66.1021 13.0703 65.7713 12.2632L65.6859 12.0464L64.4595 9.62202C63.3674 7.9379 62.052 6.40962 60.5492 5.07895L59.1273 3.98051C57.2262 2.72811 55.1245 1.81073 52.9135 1.26818L52.6149 1.22197L50.8375 0.926925L50.6882 0.909145C47.7424 0.720098 44.7969 1.28278 42.1282 2.54436C40.0507 3.53582 38.1516 4.86432 36.508 6.47599C36.0637 6.90968 35.6264 7.34692 35.1856 7.78772C34.7448 8.22852 34.2827 8.69064 33.8277 9.13855L33.7992 9.17411C33.7397 9.28797 33.6525 9.38505 33.5456 9.45647C33.4388 9.52789 33.3158 9.57136 33.1878 9.5829C33.0683 9.58658 32.9497 9.56135 32.842 9.50937C32.7343 9.45738 32.6407 9.38018 32.5693 9.28431C32.0833 8.88659 31.6326 8.44772 31.222 7.97258C30.8452 7.64553 30.4612 7.28293 30.0951 6.93101L29.9885 6.83147C29.1831 6.00737 28.2998 5.2633 27.3508 4.60971L26.8282 4.25423L26.391 3.95563L24.7344 3.09181C22.7926 2.2912 20.7336 1.81098 18.6379 1.66988C17.2342 1.65347 15.8315 1.74975 14.4433 1.95782C12.5363 2.40195 10.7082 3.13436 9.02217 4.12981C5.62863 6.22586 3.08505 9.4538 1.84071 13.2434C0.596375 17.033 0.731345 21.1405 2.2218 24.8402L2.27513 24.9824C2.35486 25.2187 2.45106 25.4492 2.56305 25.672C3.42742 27.3586 4.5261 28.9145 5.82639 30.2933C6.24941 30.7376 6.73996 31.2211 7.36917 31.8183L9.72246 34.0294C10.7889 35.0318 11.8553 36.0307 12.9218 37.0225C13.0857 37.1577 13.1936 37.3489 13.2245 37.5591C13.2554 37.7693 13.207 37.9835 13.0889 38.1601C12.6247 39.0568 12.381 40.0511 12.3779 41.0608V41.1248C12.3774 41.508 12.4288 41.8895 12.5308 42.2588C12.8585 43.5672 13.6506 44.7118 14.7596 45.4795C15.0534 45.6686 15.3585 45.8396 15.6732 45.9914L15.7088 46.0091L15.9043 46.1087L16.0678 46.194C16.1396 46.2058 16.2091 46.2286 16.274 46.2615L16.5903 46.3326C16.8735 46.4038 17.1627 46.4478 17.4542 46.4641C18.2896 46.4961 18.4247 47.0329 18.4424 47.2604V47.4097C18.4499 47.6022 18.4737 47.7936 18.5135 47.9821C18.8223 49.4739 19.6912 50.7906 20.9414 51.6613L21.1121 51.7786C21.7758 52.1917 22.5095 52.4796 23.277 52.6282C23.4974 52.6744 23.7213 52.7135 23.9453 52.7526H24.0519C24.2099 52.75 24.3646 52.7987 24.4927 52.8913C24.5953 52.9782 24.6764 53.0875 24.7301 53.2107C24.7837 53.334 24.8083 53.4679 24.802 53.6022C24.8668 54.8145 25.3177 55.9742 26.0889 56.9118C26.9064 57.8891 28.0047 58.5915 29.2349 58.9238C29.3842 58.9664 29.537 59.0091 29.697 59.0482L30.1058 59.1015C31.115 59.1742 32.1271 59.0066 33.0589 58.6124C33.9908 58.2181 34.8159 57.6085 35.4665 56.8336C36.2059 56.016 36.995 55.2481 37.7557 54.5051L37.9797 54.2847C38.257 54.011 38.5378 53.7373 38.8151 53.4565L39.2132 53.0619L39.59 53.4778C39.7607 53.6662 39.9455 53.8333 40.1126 54.0252C41.2143 55.1237 42.633 55.8486 44.1687 56.0977C46.3833 56.183 48.118 55.4223 49.444 53.7658C50.1576 52.8986 50.5903 51.8348 50.6846 50.7157C50.7379 50.0047 51.097 49.6813 51.8115 49.6493C54.6554 49.4964 57.1224 47.0436 57.3392 44.1784V44.0931C57.3266 43.966 57.3418 43.8378 57.3836 43.7172C57.4255 43.5965 57.493 43.4865 57.5816 43.3945C57.6702 43.3026 57.7777 43.2309 57.8966 43.1846C58.0156 43.1383 58.1432 43.1184 58.2706 43.1262C59.0252 43.0884 59.7649 42.9022 60.4474 42.5783C61.13 42.2544 61.742 41.7992 62.2485 41.2386C62.8122 40.6292 63.2462 39.9117 63.5242 39.1295C63.8023 38.3473 63.9185 37.5168 63.8659 36.6884C63.8501 36.499 63.8193 36.3112 63.7735 36.1267L63.6171 35.5331C63.3979 34.693 63.0029 33.9091 62.4582 33.2331C62.2726 33.0121 62.0718 32.8042 61.8574 32.611C61.7431 32.5267 61.6468 32.4203 61.5742 32.2982C61.5015 32.1761 61.454 32.0408 61.4344 31.9001C61.4374 31.7508 61.4705 31.6037 61.5315 31.4676C61.5926 31.3314 61.6805 31.2089 61.7899 31.1073C64.0071 28.8033 65.616 25.9838 66.4716 22.9028C66.6244 22.3412 66.7524 21.7475 66.859 21.2356C66.9806 20.6834 67.0414 20.1196 67.0403 19.5542V18.765C67.0429 17.6063 66.9238 16.4506 66.6849 15.3168ZM14.6068 34.719C13.8958 34.0081 13.1422 33.2971 12.4206 32.5861L11.8944 32.0849C11.5271 31.7389 11.1634 31.3905 10.8031 31.0398L9.38121 29.7138C7.97705 28.5088 6.40579 26.998 5.43177 24.9646C5.35711 24.8082 5.27538 24.6589 5.19718 24.506C4.85408 23.8848 4.60037 23.2182 4.44356 22.526C3.87312 20.7535 3.6793 18.8813 3.87458 17.0296C4.06986 15.1778 4.64991 13.3872 5.57753 11.7727C6.80085 9.43815 8.71188 7.53581 11.052 6.32314C13.4657 4.90121 16.1673 4.3431 19.2991 4.63104C20.1195 4.6856 20.9284 4.8543 21.7022 5.13227C22.4239 5.28322 23.1165 5.54971 23.7533 5.92144C24.9976 6.43977 26.1362 7.18199 27.1126 8.11122C27.5961 8.54846 28.0582 9.01414 28.5025 9.46205L28.7088 9.66821L29.1246 10.0841C29.6159 10.4835 30.0704 10.9261 30.4826 11.4065C31.9792 12.7716 33.4757 14.2255 35.0434 15.8358L37.3078 18.0149C38.225 18.8965 39.1208 19.7603 39.9917 20.6242C40.4508 21.0515 40.7452 21.6265 40.8236 22.2487C40.8363 22.2869 40.8458 22.3262 40.852 22.366C41.0054 22.9384 41.0005 23.5417 40.8377 24.1114C40.675 24.6812 40.3604 25.196 39.9277 25.6009C39.5254 26.0472 39.0108 26.3776 38.4375 26.5577C37.8643 26.7377 37.2533 26.7608 36.668 26.6247H36.6218C35.8825 26.538 35.1995 26.1871 34.6986 25.6365C34.1547 25.1104 33.4402 24.4136 32.7435 23.6813C32.3287 23.2598 31.8485 22.9081 31.3215 22.6398C30.611 22.4292 29.8608 22.389 29.1318 22.5224C28.3591 22.7841 27.6664 23.2394 27.1197 23.8448C25.4608 25.5156 23.8019 27.1816 22.143 28.8429L20.49 30.4959C19.0681 31.9178 17.6817 33.3078 16.2775 34.7226C16.1769 34.8467 16.0517 34.9487 15.9098 35.0221C15.7678 35.0955 15.6123 35.1388 15.4528 35.1492C15.29 35.1385 15.1311 35.0948 14.9857 35.0209C14.8403 34.947 14.7113 34.8443 14.6068 34.719ZM47.0552 52.1128C46.742 52.4729 46.3569 52.7635 45.9247 52.9659C45.5171 53.151 45.0749 53.248 44.6272 53.2503C43.9826 53.2538 43.3558 53.0382 42.8498 52.6389C41.7324 51.7149 40.6998 50.693 39.7642 49.5853C39.6706 49.4685 39.5984 49.3361 39.5509 49.1942C39.5509 49.1551 39.5296 49.1303 39.5189 49.1089C39.2129 48.5134 39.1119 47.8337 39.2314 47.1749C39.351 46.5162 39.6844 45.9152 40.1801 45.4652C40.6481 44.9912 41.2606 44.6864 41.9209 44.5989C42.5813 44.5113 43.252 44.646 43.8274 44.9818C44.2842 45.1973 44.6855 45.5147 45.0005 45.9096C45.1071 46.0269 45.2138 46.1442 45.3275 46.2651C46.0029 46.9014 46.5397 47.4382 47.0161 47.9643C47.5353 48.5279 47.827 49.264 47.8349 50.0303C47.8428 50.7966 47.5663 51.5386 47.0587 52.1128H47.0552ZM53.4823 45.8705C53.1831 46.1711 52.8297 46.4123 52.4407 46.5815C52.061 46.7395 51.654 46.8216 51.2428 46.8232C50.4859 46.8227 49.7576 46.5342 49.2058 46.0162C48.4735 45.3337 47.7839 44.6121 47.0943 43.9118L46.1984 42.9946C45.6665 42.5374 45.1698 42.0407 44.7125 41.5087L44.4175 41.2243L44.1615 40.9826C43.8061 40.6271 43.4506 40.2965 43.0951 39.9162C42.5414 39.3265 42.237 38.5456 42.2457 37.7367C42.2543 36.9278 42.5752 36.1535 43.1413 35.5757C43.4108 35.2766 43.7366 35.0334 44.1001 34.8603C44.4636 34.6871 44.8577 34.5872 45.2598 34.5664C45.6619 34.5456 46.0641 34.6043 46.4436 34.7391C46.823 34.8738 47.1721 35.082 47.4711 35.3518C47.8941 35.7286 48.2745 36.1232 48.6868 36.564L48.8219 36.7062L49.1987 37.0936C49.7265 37.5431 50.2174 38.034 50.6668 38.5618L50.706 38.5973L51.5555 39.4256C52.2167 40.0655 52.9775 40.7906 53.66 41.5336C54.2066 42.1346 54.4944 42.9268 54.4612 43.7385C54.4279 44.5503 54.0762 45.3162 53.4823 45.8705ZM60.0444 39.3474C59.748 39.6497 59.3954 39.8912 59.0065 40.0584C58.6221 40.2175 58.2103 40.2996 57.7943 40.3001C57.0394 40.3031 56.3116 40.0198 55.7574 39.5074C55.0464 38.8319 54.3354 38.1139 53.6458 37.4171L53.2619 37.0225C53.0592 36.8128 52.8531 36.6031 52.6469 36.3969L52.4905 36.2583C51.9807 35.8826 51.5866 35.3715 51.3529 34.783C51.0802 34.2326 50.989 33.6098 51.0925 33.0043C51.196 32.3988 51.4888 31.8417 51.9288 31.413C52.3308 30.9386 52.8717 30.6023 53.4751 30.4518C54.0785 30.3013 54.7139 30.344 55.2917 30.5741C56.0453 30.7625 56.5501 31.3384 56.9589 31.797C57.0122 31.8609 57.0726 31.9249 57.1295 31.9889L57.5667 32.419L58.0431 32.8847L58.1213 32.9594C58.8074 33.6277 59.5183 34.3138 60.1831 35.0247C60.7375 35.6172 61.0343 36.4055 61.0083 37.2165C60.9823 38.0275 60.6357 38.7951 60.0444 39.3509V39.3474ZM63.0198 24.1506C62.9742 24.2587 62.9144 24.3603 62.8421 24.4527L62.8172 24.4847C62.348 25.9315 61.4628 27.0975 60.5208 28.267L60.3822 28.4234C59.5112 29.401 59.1167 29.7565 57.9898 28.7789C57.8627 28.6664 57.7258 28.5653 57.581 28.4768C55.6116 27.3215 53.6707 27.1899 51.6906 28.0786C51.0028 28.377 50.3825 28.8114 49.8669 29.3557C49.3513 29.9 48.9511 30.543 48.6904 31.246C48.6408 31.4108 48.5591 31.5642 48.4499 31.6972C48.3407 31.8302 48.2061 31.9403 48.054 32.0209C47.8948 32.0777 47.7256 32.1013 47.5569 32.0903C47.3882 32.0793 47.2235 32.0339 47.0729 31.9569C46.8349 31.8749 46.5898 31.8154 46.3406 31.7792L45.9852 31.7081C45.0942 31.6928 44.2061 31.8127 43.351 32.0636C42.5364 32.3969 41.7967 32.8897 41.1752 33.513C40.5538 34.1363 40.0632 34.8775 39.7322 35.693C39.4819 36.5543 39.362 37.4482 39.3768 38.3449C39.5058 39.3094 39.8416 40.2347 40.3614 41.0573C40.4411 41.1528 40.4944 41.2675 40.5159 41.3901C40.5374 41.5126 40.5264 41.6386 40.484 41.7556C40.4415 41.8725 40.3691 41.9763 40.274 42.0565C40.1789 42.1367 40.0644 42.1905 39.942 42.2126C39.9279 42.2157 39.9134 42.2157 39.8993 42.2126C37.3647 43.5065 36.1703 45.5719 36.3445 48.3517C36.3922 48.8189 36.4923 49.2792 36.6431 49.7239C36.6751 49.827 36.7035 49.9301 36.732 50.0332C37.1408 50.5593 37.0874 51.1316 36.5364 51.6471C35.6477 52.5038 34.759 53.4245 33.9699 54.1959L33.4473 54.7149L32.9319 55.2374C32.6639 55.5321 32.3382 55.7685 31.9749 55.9318C31.6116 56.0951 31.2186 56.1818 30.8203 56.1866H30.6675C30.0778 56.2014 29.4971 56.0403 28.9995 55.7237C28.5018 55.4072 28.1098 54.9495 27.8733 54.4092C27.6192 53.8526 27.5402 53.2319 27.6469 52.6294C27.7535 52.027 28.0408 51.4711 28.4706 51.0357C29.2704 50.2109 30.0809 49.404 30.8452 48.6468C31.0798 48.4157 31.3109 48.1811 31.5562 47.9358L31.9116 47.5804C32.8039 46.6845 32.8394 46.0909 32.0645 45.1524C31.6521 44.868 31.1829 44.8183 30.4648 44.9782C30.1093 45.3337 29.7716 45.6679 29.4303 46.0162L29.1709 46.2757C28.2821 47.1609 27.365 48.078 26.4514 48.9667C25.882 49.5414 25.1076 49.8663 24.2986 49.8699C23.4896 49.8736 22.7123 49.5557 22.1377 48.9863C21.563 48.4168 21.2381 47.6424 21.2345 46.8334C21.2308 46.0245 21.5487 45.2472 22.1181 44.6725C23.2805 43.4603 24.4359 42.3015 25.5556 41.2315C26.2666 40.556 26.423 39.9304 26.0675 39.1448C25.7802 38.775 25.3612 38.5305 24.898 38.4622C24.6503 38.4795 24.4085 38.5456 24.1864 38.6566C23.9644 38.7676 23.7665 38.9214 23.604 39.1092C22.6798 40.0512 21.2934 41.459 19.8821 42.8169C19.4131 43.2739 18.7957 43.5476 18.1421 43.5884C17.4885 43.6291 16.8419 43.4341 16.3198 43.0389C15.7976 42.6436 15.4345 42.0742 15.2963 41.4341C15.1581 40.794 15.254 40.1255 15.5666 39.55C15.7131 39.3018 15.8911 39.0736 16.0962 38.8711L20.7175 34.2498C23.5613 31.4059 26.4052 28.5621 29.249 25.7182C30.0133 24.9539 30.6035 25.5298 30.8239 25.7467C31.0443 25.9635 31.2469 26.1697 31.4531 26.383L31.6237 26.5607C32.3124 27.3259 33.0771 28.019 33.9059 28.6296C34.5331 28.9513 35.1904 29.2109 35.8682 29.4046L35.9748 29.4366C36.9287 29.575 37.8995 29.5461 38.8435 29.3513C40.4303 28.9938 41.8213 28.0454 42.7339 26.699C43.6464 25.3526 44.012 23.7093 43.7563 22.103C43.7341 21.9713 43.7211 21.8383 43.7172 21.7048V21.616C43.7061 21.5845 43.6966 21.5524 43.6888 21.52C43.4767 20.8349 43.2018 20.1709 42.8676 19.5364C42.146 18.6417 41.3505 17.8093 40.4894 17.048L40.2903 16.8596C39.91 16.5041 39.5225 16.1487 39.1493 15.7541C39.0604 15.6652 38.9751 15.5728 38.8862 15.4804L38.6302 15.2066C38.0951 14.757 37.5937 14.2687 37.1301 13.7456L36.5791 13.2266C36.3374 12.9991 36.0956 12.768 35.8433 12.5476C35.7409 12.4726 35.656 12.3762 35.5946 12.2651C35.5332 12.154 35.4968 12.0308 35.4878 11.9042C35.4932 11.7787 35.5248 11.6556 35.5805 11.543C35.6362 11.4304 35.7148 11.3306 35.8113 11.2501C36.3267 10.7595 36.8351 10.2405 37.3221 9.73931L37.386 9.67177C38.2881 8.70659 39.2549 7.80396 40.2797 6.97012C41.922 5.65209 43.8526 4.74098 45.914 4.31111C46.9505 4.00034 48.0328 3.87047 49.1134 3.92719C51.778 3.81739 54.4161 4.4936 56.6994 5.87168C57.3438 6.19525 57.9416 6.60418 58.4768 7.08742C60.2419 8.41668 61.6461 10.1667 62.5613 12.1779C62.9557 12.8273 63.2369 13.5389 63.3931 14.2824C64.4344 17.5143 64.3022 21.01 63.0198 24.1541V24.1506Z", fill: fill }, void 0) }), void 0));
|
|
557
|
+
};
|
|
558
|
+
|
|
559
|
+
var VIP = function (_a) {
|
|
560
|
+
var height = _a.height, width = _a.width, fill = _a.fill;
|
|
561
|
+
return (jsxs$1(IconWrapper, __assign$1({ width: width, height: height, viewBoxX: 52, viewBoxY: 70, title: "VIP Content" }, { children: [jsx$1("path", { d: "M24.797 7.03962H24.4415C20.0022 7.02897 15.7365 8.76334 12.5642 11.8688C9.39183 14.9742 7.56696 19.202 7.48301 23.6405C7.39906 28.079 9.06276 32.3728 12.1154 35.596C15.168 38.8191 19.3651 40.7136 23.8016 40.8708H23.8372H23.9865H24.445C28.9019 40.8684 33.1779 39.1077 36.3443 35.9712C39.5106 32.8346 41.3116 28.5754 41.3561 24.1187C41.4006 19.6621 39.685 15.3678 36.5818 12.1687C33.4787 8.9695 29.2387 7.12382 24.7828 7.0325L24.797 7.03962ZM24.4237 37.931C21.4335 37.9308 18.5227 36.969 16.1211 35.1876C13.7194 33.4063 11.9543 30.8999 11.0863 28.0384C10.2184 25.177 10.2936 22.1123 11.3009 19.2969C12.3083 16.4816 14.1943 14.0648 16.6804 12.4034C19.1666 10.7421 22.1211 9.92431 25.1077 10.0708C28.0943 10.2174 30.9545 11.3205 33.2661 13.2172C35.5777 15.1139 37.2181 17.7038 37.945 20.6042C38.6719 23.5047 38.4467 26.5621 37.3028 29.3248C36.2441 31.8695 34.4565 34.0443 32.1648 35.5757C29.8732 37.107 27.1799 37.9265 24.4237 37.931V37.931Z", fill: fill }, void 0), jsx$1("path", { d: "M50.6507 53.2487L39.4459 42.0403L39.5916 41.9159C43.528 38.5832 46.2575 34.047 47.3584 29.0082C48.4594 23.9693 47.8706 18.7081 45.6829 14.0373C43.4953 9.36656 39.8305 5.54605 35.2547 3.166C30.679 0.785956 25.4468 -0.0211895 20.3665 0.869234C15.2863 1.75966 10.6405 4.29811 7.14694 8.09246C3.65337 11.8868 1.50639 16.7259 1.03763 21.8623C0.56887 26.9987 1.80443 32.1465 4.55344 36.5106C7.30245 40.8747 11.4119 44.2122 16.2471 46.0075L16.3644 46.0537V68.0296C16.3672 68.2946 16.4411 68.5541 16.5782 68.7809C16.7154 69.0077 16.9109 69.1936 17.1443 69.3192C17.3777 69.4448 17.6405 69.5055 17.9054 69.495C18.1702 69.4845 18.4274 69.4032 18.6502 69.2596L24.4232 65.399L30.214 69.256C30.4361 69.4001 30.6926 69.4822 30.9571 69.4936C31.2216 69.5051 31.4843 69.4455 31.718 69.321C31.9516 69.1966 32.1477 69.0118 32.2858 68.786C32.4239 68.5601 32.499 68.3014 32.5033 68.0367V57.9517L39.2219 64.6667C39.4113 64.8528 39.6471 64.9846 39.9048 65.0484C40.1625 65.1121 40.4326 65.1055 40.6868 65.0292C40.9411 64.953 41.1702 64.8098 41.3503 64.6147C41.5303 64.4196 41.6546 64.1798 41.7103 63.9202L43.0753 57.095L49.897 55.7299C50.1568 55.6747 50.397 55.5509 50.5926 55.3713C50.7883 55.1918 50.9322 54.9631 51.0096 54.7091C51.0869 54.455 51.0947 54.1849 51.0322 53.9268C50.9697 53.6687 50.8392 53.4321 50.6542 53.2415L50.6507 53.2487ZM29.5564 65.2782L25.2408 62.3988C24.9995 62.2369 24.7155 62.1505 24.425 62.1505C24.1344 62.1505 23.8504 62.2369 23.6092 62.3988L19.2936 65.2782V46.9175L19.5069 46.9637C22.7482 47.6641 26.1017 47.6641 29.3431 46.9637L29.5564 46.9175V65.2782ZM24.4232 44.5358C20.3593 44.5358 16.3866 43.3307 13.0076 41.0728C9.62863 38.8149 6.99509 35.6057 5.44006 31.8511C3.88502 28.0964 3.47833 23.9649 4.27142 19.9791C5.06452 15.9934 7.02176 12.3323 9.89565 9.45888C12.7695 6.58549 16.431 4.62887 20.4169 3.83647C24.4028 3.04406 28.5342 3.45147 32.2886 5.00716C36.043 6.56284 39.2517 9.19694 41.509 12.5763C43.7663 15.9557 44.9708 19.9286 44.9701 23.9925C44.9635 29.4395 42.7965 34.6615 38.9445 38.5128C35.0926 42.3641 29.8702 44.5302 24.4232 44.5358ZM41.529 54.3969C41.244 54.4542 40.9823 54.5944 40.7768 54.8C40.5713 55.0055 40.431 55.2672 40.3737 55.5522L39.3534 60.6356L32.5033 53.7854V46.0537L32.6206 46.0075C34.1229 45.4466 35.5632 44.7319 36.9184 43.8746L37.0393 43.7999L46.6159 53.3766L41.529 54.3969Z", fill: fill }, void 0), jsx$1("path", { d: "M34.0855 20.7434C34.0085 20.482 33.8581 20.2481 33.652 20.0698C33.4459 19.8914 33.1929 19.7761 32.9231 19.7374L27.9783 18.9909L25.7423 14.5261C25.6166 14.2854 25.4274 14.0838 25.1952 13.9432C24.963 13.8025 24.6968 13.7281 24.4253 13.7281C24.1538 13.7281 23.8875 13.8025 23.6553 13.9432C23.4231 14.0838 23.2339 14.2854 23.1082 14.5261L20.8687 18.9909L15.931 19.7374C15.666 19.7836 15.4186 19.9008 15.215 20.0766C15.0114 20.2524 14.8593 20.4802 14.775 20.7356C14.6908 20.9911 14.6774 21.2646 14.7363 21.527C14.7953 21.7895 14.9244 22.031 15.1099 22.2258L18.6647 25.7344L17.8435 30.6614C17.8024 30.9306 17.8361 31.2059 17.9409 31.4572C18.0457 31.7086 18.2175 31.9263 18.4376 32.0866C18.6577 32.2469 18.9177 32.3437 19.1891 32.3663C19.4604 32.3889 19.7328 32.3365 19.9764 32.2148L24.4235 29.9255L28.8635 32.229C29.1065 32.3502 29.3781 32.4024 29.6487 32.38C29.9193 32.3577 30.1786 32.2615 30.3985 32.1022C30.6183 31.9428 30.7903 31.7262 30.8957 31.4759C31.0011 31.2257 31.0359 30.9513 30.9964 30.6827L30.1752 25.7486L33.73 22.2436C33.9272 22.0542 34.0657 21.8119 34.1287 21.5458C34.1918 21.2798 34.1768 21.0012 34.0855 20.7434ZM27.5589 24.188C27.3905 24.3537 27.2645 24.5574 27.1915 24.782C27.1185 25.0066 27.1006 25.2455 27.1394 25.4784L27.6015 28.2548L25.1131 26.9572C24.9026 26.8487 24.6692 26.7921 24.4324 26.7921C24.1956 26.7921 23.9621 26.8487 23.7516 26.9572L21.2633 28.2512L21.7254 25.4784C21.7638 25.2449 21.7458 25.0056 21.6728 24.7805C21.5999 24.5554 21.4741 24.351 21.3059 24.1845L19.301 22.2116L22.0844 21.7921C22.3177 21.7564 22.539 21.6655 22.7301 21.527C22.9211 21.3885 23.0764 21.2064 23.1829 20.9958L24.4377 18.479L25.6961 20.9958C25.8026 21.2064 25.9578 21.3885 26.1489 21.527C26.34 21.6655 26.5613 21.7564 26.7946 21.7921L29.578 22.2116L27.5589 24.188Z", fill: fill }, void 0)] }), void 0));
|
|
562
|
+
};
|
|
563
|
+
|
|
564
|
+
var DealsOffers = function (_a) {
|
|
565
|
+
var height = _a.height, width = _a.width, fill = _a.fill;
|
|
566
|
+
return (jsx$1(IconWrapper, __assign$1({ width: width, height: height, viewBoxX: 69, viewBoxY: 68, title: "Exclusive Deals and Offers" }, { children: jsx$1("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19.7346 59.8423L19.6339 59.9432C16.5094 61.0536 12.9819 60.2461 10.563 57.9243C8.24488 55.6025 7.43858 52.0694 8.54724 48.9401L8.64803 48.8391L3.50787 43.6908C2.90315 42.9842 2.5 42.1767 2.5 41.2681C2.5 40.2587 2.90315 39.3502 3.50787 38.6435L38.985 3.21136C39.6906 2.60568 40.4969 2.20189 41.5047 2.20189C42.5126 2.20189 43.3189 2.50473 44.0244 3.21136L48.5598 7.85489L48.7614 7.75394C51.785 5.43218 56.0181 5.53312 59.0417 7.85489L59.2433 7.95584L64.7866 2.40379C64.9882 2.10095 65.1898 2 65.4921 2C65.6937 2 65.9961 2 66.1976 2.10095C66.6008 2.50473 66.6008 3.11041 66.1976 3.5142L60.6543 9.06625L60.7551 9.26814C63.0732 12.3975 63.174 16.6372 60.8559 19.6656L60.7551 19.8675L65.3913 24.4101C65.9961 25.1167 66.3992 25.9243 66.3992 26.8328C66.5 27.8423 66.0969 28.7508 65.3913 29.4574L29.9142 64.9905C29.2087 65.5962 28.4024 66 27.4953 66C26.4874 66 25.5803 65.6972 24.8748 64.9905L19.7346 59.8423ZM4.81811 42.0757L10.4622 47.6278C10.7646 48.0315 10.8654 48.4353 10.6638 48.8391C9.55512 51.3628 10.1598 54.3912 12.0748 56.3091C13.9898 58.2271 17.0134 58.7319 19.5331 57.6214H19.6339H19.9362C20.1378 57.6214 20.4402 57.7224 20.6417 57.9243L26.185 63.5773C26.4874 63.8801 26.8906 63.9811 27.2937 63.9811C27.6968 63.9811 28.1 63.8801 28.4024 63.5773L64.1819 28.2461C64.3835 27.9432 64.585 27.5394 64.585 27.1356C64.585 26.7319 64.3835 26.3281 64.0811 26.0252L58.6386 20.776C58.437 20.5741 58.3362 20.2713 58.3362 20.0694C58.3362 19.8675 58.437 19.5647 58.6386 19.3628C60.7551 17.041 61.0575 13.6088 59.2433 10.9842L59.0417 10.7823L56.9252 12.9022L57.026 13.306C57.6307 14.7192 57.4291 16.2334 56.3205 17.3438C55.615 17.9495 54.8087 18.3533 53.9016 18.3533C52.8937 18.3533 51.9866 17.9495 51.2811 17.2429C50.6764 16.5363 50.2732 15.7287 50.2732 14.8202C50.1724 13.8107 50.5756 12.9022 51.2811 12.1956C52.3898 11.0852 54.0024 10.8833 55.3126 11.489L55.5142 11.5899L57.6307 9.47003L57.4291 9.26814C54.8087 7.4511 51.2811 7.75394 49.0638 9.97476C48.6606 10.3785 48.0559 10.3785 47.6528 9.97476L42.4118 4.52366C41.9079 3.91798 40.9 3.91798 40.2953 4.52366L4.81811 39.9558C4.21339 40.4606 4.21339 41.47 4.81811 42.0757ZM53.8008 16.1325C54.2039 16.1325 54.6071 16.0315 54.9094 15.7287C55.5142 15.123 55.5142 14.1136 54.8087 13.6088C54.3047 13.0032 53.2968 13.0032 52.6921 13.6088C52.0874 14.1136 52.0874 15.123 52.6921 15.7287C52.9945 15.9306 53.3976 16.1325 53.8008 16.1325ZM59.0417 27.3375L41.2024 9.46995C41.1016 9.26806 40.9 9.16711 40.4968 9.16711C40.2953 9.16711 39.9929 9.26806 39.7913 9.46995L26.5882 22.6939C26.185 23.0977 26.185 23.7034 26.5882 24.1072C26.9913 24.511 27.6968 24.511 27.9992 24.1072L40.5976 11.5898L57.026 28.0441L56.8244 28.246L28.3016 56.7129L11.8732 40.2586L20.8433 31.2744C21.2465 30.8706 21.2465 30.2649 20.8433 29.8611C20.6417 29.6592 20.4402 29.5583 20.1378 29.5583C19.8354 29.5583 19.6339 29.6592 19.4323 29.8611L9.6559 39.6529C9.25275 40.0567 9.25275 40.6624 9.6559 41.0662L27.3945 58.8327C27.7976 59.2365 28.5031 59.2365 28.8055 58.8327L59.0417 28.7507C59.4449 28.3469 59.4449 27.7412 59.0417 27.3375ZM30.8213 27.1356C30.8213 26.1262 31.2244 25.2176 31.9299 24.511C32.5347 23.8044 33.4417 23.4006 34.248 23.5016H34.3488C35.2559 23.5016 36.163 23.9053 36.8685 24.612C37.4732 25.3186 37.8764 26.1262 37.8764 27.0347C37.9772 28.0441 37.574 28.9527 36.8685 29.6593C36.163 30.265 35.3567 30.6687 34.4496 30.6687C33.4417 30.5678 32.5347 30.265 31.8291 29.5583C31.2244 28.8517 30.8213 28.0441 30.8213 27.1356ZM35.5583 28.0441C36.163 27.5394 36.163 26.5299 35.5583 25.9243C34.9535 25.3186 33.9457 25.3186 33.341 25.9243C32.7362 26.429 32.7362 27.4385 33.341 28.0441C33.6433 28.246 34.0465 28.4479 34.4496 28.4479C34.8528 28.4479 35.2559 28.347 35.5583 28.0441ZM23.7661 26.0253C24.0685 26.0253 24.2701 26.1262 24.4717 26.3281C24.8748 26.7319 24.8748 27.3376 24.4717 27.7414C24.0685 28.0442 23.4638 28.0442 23.0606 27.7414C22.6575 27.3376 22.6575 26.7319 23.0606 26.3281C23.2622 26.1262 23.4638 26.0253 23.7661 26.0253ZM31.9299 43.6909C32.6354 44.3976 33.5425 44.8013 34.4496 44.8013H34.5504C35.4575 44.8013 36.2638 44.3976 36.9693 43.7919C37.6748 43.0853 38.078 42.1767 38.078 41.1673C38.078 40.2588 37.6748 39.4512 37.0701 38.7446C36.4654 38.0379 35.5583 37.7351 34.6512 37.6342H34.5504C33.6433 37.6342 32.7362 38.0379 32.0307 38.6436C31.3252 39.3502 30.9221 40.2588 31.0228 41.2682C30.9221 42.2777 31.3252 43.0853 31.9299 43.6909ZM33.341 40.1578C33.9457 39.5521 34.9535 39.5521 35.4575 40.1578C35.7598 40.5616 35.9614 41.0663 35.8606 41.4701C35.8606 41.773 35.6591 42.1767 35.4575 42.3786C35.1551 42.6815 34.752 42.7824 34.3488 42.7824C33.9457 42.7824 33.5425 42.5805 33.2402 42.3786C32.9378 42.0758 32.837 41.672 32.837 41.2682C32.837 40.8644 33.0386 40.3597 33.341 40.1578ZM43.1173 31.3754H43.3189C43.4197 31.3754 43.5205 31.4006 43.6213 31.4258C43.722 31.4511 43.8228 31.4763 43.9236 31.4763C44.1252 31.5773 44.3268 31.7792 44.3268 32.082C44.4275 32.5867 44.1252 33.1924 43.5205 33.2933L25.7819 36.8265C25.4795 36.8265 25.1772 36.7255 24.9756 36.6246C24.774 36.5236 24.5724 36.3217 24.5724 36.0189C24.4716 35.817 24.5724 35.5142 24.6732 35.3123C24.8748 35.1104 25.0764 34.9085 25.3787 34.9085L43.1173 31.3754Z", fill: fill }, void 0) }), void 0));
|
|
567
|
+
};
|
|
568
|
+
|
|
569
|
+
var StyleFashionContent = function (_a) {
|
|
570
|
+
var height = _a.height, width = _a.width, fill = _a.fill;
|
|
571
|
+
return (jsxs$1(IconWrapper, __assign$1({ width: width, height: height, viewBoxX: 63, viewBoxY: 67, title: "Style and Fashion Content" }, { children: [jsx$1("path", { d: "M56.1242 52.3747C56.2617 52.4653 56.3933 52.5647 56.518 52.6724C58.5069 54.6649 60.4921 56.6611 62.4736 58.661C63.1722 59.3631 63.1709 60.0371 62.4736 60.7442C60.9058 62.3225 59.3359 63.9 57.764 65.4766C57.0496 66.1947 56.39 66.1898 55.667 65.4632C53.6912 63.478 51.7157 61.4916 49.7407 59.504C49.6345 59.3827 49.5352 59.2555 49.4432 59.1229C49.3116 59.3031 49.2274 59.4109 49.1518 59.5249C47.8851 61.4341 46.6136 63.3408 45.3554 65.2561C45.0262 65.7573 44.6129 66.082 43.996 65.9852C43.3791 65.8884 43.0853 65.4644 42.9122 64.8823C40.4544 56.6231 37.9892 48.366 35.5168 40.1109C35.3534 39.5668 35.3559 39.0717 35.7728 38.6502C36.1898 38.2287 36.6811 38.2176 37.2236 38.3818C45.3871 40.8482 53.5522 43.3104 61.7189 45.7685L62.0176 45.8617C62.5553 46.0247 62.9027 46.3739 62.9771 46.9376C63.0515 47.5013 62.804 47.8983 62.3505 48.201C60.6558 49.3332 58.9624 50.468 57.2702 51.6051C56.9215 51.8343 56.5765 52.0683 56.1242 52.3747ZM59.9134 59.6597C59.8378 59.58 59.7427 59.4746 59.6439 59.3742C57.5844 57.3032 55.5252 55.2327 53.4665 53.1626C52.702 52.3943 52.7886 51.5696 53.6944 50.9667C55.2696 49.912 56.8443 48.8566 58.4187 47.8003C58.5333 47.7231 58.643 47.6397 58.8039 47.5233L38.5281 41.4098C40.5665 48.2377 42.5781 54.9799 44.6117 61.7906C44.7336 61.6203 44.8092 61.5174 44.8799 61.4108C45.9292 59.8284 46.9789 58.2456 48.029 56.6623C48.6483 55.731 49.4518 55.6526 50.2418 56.4455C52.3022 58.5139 54.3621 60.5836 56.4217 62.6545C56.5192 62.7526 56.6204 62.8457 56.6814 62.8996L59.9134 59.6597Z", fill: fill }, void 0), jsx$1("path", { d: "M35.4092 31.2978C35.4092 30.6937 35.4092 30.0908 35.4092 29.4867C35.4189 28.7441 35.9505 28.1939 36.6503 28.1877C36.8173 28.1861 36.9829 28.2181 37.1374 28.2818C37.2919 28.3456 37.4321 28.4398 37.5497 28.559C37.6673 28.6781 37.76 28.8198 37.8222 28.9755C37.8845 29.1313 37.915 29.298 37.9121 29.4658C37.9219 30.7133 37.9219 31.9599 37.9121 33.2058C37.9154 33.3736 37.8851 33.5405 37.8232 33.6964C37.7613 33.8524 37.6689 33.9943 37.5515 34.1137C37.4341 34.2332 37.2941 34.3278 37.1397 34.392C36.9854 34.4562 36.8198 34.4887 36.6527 34.4875C35.9566 34.4875 35.4189 33.9263 35.4092 33.1874C35.3982 32.56 35.4092 31.9277 35.4092 31.2978Z", fill: fill }, void 0), jsx$1("path", { d: "M28.5014 40.7898C27.9004 40.7898 27.2993 40.7898 26.6995 40.7898C25.9351 40.7898 25.3755 40.2494 25.3731 39.5349C25.3706 38.8205 25.9253 38.2765 26.691 38.2728C27.9052 38.2662 29.1195 38.2662 30.3338 38.2728C31.0897 38.2728 31.6493 38.8303 31.6407 39.546C31.6322 40.2616 31.0812 40.78 30.3423 40.7898C29.7279 40.7959 29.1147 40.7898 28.5014 40.7898Z", fill: fill }, void 0), jsx$1("path", { d: "M29.3138 30.6961C29.4674 30.7782 29.8015 30.8762 30.0161 31.087C30.8695 31.8994 31.6936 32.7425 32.5153 33.5856C32.6368 33.7012 32.7337 33.8402 32.8002 33.9945C32.8667 34.1487 32.9015 34.3149 32.9024 34.4829C32.9033 34.651 32.8704 34.8176 32.8055 34.9725C32.7407 35.1275 32.6453 35.2676 32.5251 35.3845C32.0228 35.8808 31.2669 35.8746 30.7354 35.3477C29.9063 34.5308 29.0846 33.7049 28.2702 32.87C28.0782 32.6963 27.9474 32.4647 27.8975 32.2099C27.8476 31.9551 27.8813 31.691 27.9935 31.4571C28.208 30.9669 28.6104 30.7316 29.3138 30.6961Z", fill: fill }, void 0), jsx$1("path", { d: "M44.0404 30.6974C44.7 30.7341 45.0914 30.9633 45.312 31.4326C45.5327 31.902 45.4973 32.386 45.145 32.7573C44.2709 33.6776 43.376 34.5807 42.4629 35.4532C41.9935 35.9017 41.2437 35.8306 40.7938 35.3723C40.5655 35.1505 40.4322 34.8479 40.4225 34.5289C40.4127 34.2099 40.5271 33.8996 40.7414 33.6641C41.5997 32.7655 42.4783 31.8852 43.3772 31.0233C43.5784 30.8359 43.8917 30.7672 44.0404 30.6974Z", fill: fill }, void 0), jsx$1("path", { d: "M32.908 44.7343C32.8299 44.885 32.7385 45.2245 32.5288 45.4414C31.712 46.3077 30.8659 47.1471 30.0149 47.9804C29.9002 48.0982 29.7633 48.1918 29.6121 48.2557C29.461 48.3197 29.2987 48.3526 29.1347 48.3526C28.9707 48.3526 28.8083 48.3197 28.6572 48.2557C28.506 48.1918 28.3691 48.0982 28.2544 47.9804C28.1362 47.8662 28.0419 47.7294 27.9771 47.5781C27.9123 47.4267 27.8782 47.2639 27.877 47.0991C27.8757 46.9343 27.9073 46.771 27.9698 46.6186C28.0323 46.4663 28.1246 46.3281 28.241 46.2121C29.0798 45.347 29.9296 44.4933 30.7903 43.6511C30.9605 43.4746 31.1818 43.3567 31.4225 43.314C31.6633 43.2713 31.9114 43.3061 32.1314 43.4133C32.6227 43.629 32.8665 44.0273 32.908 44.7343Z", fill: fill }, void 0), jsx$1("path", { d: "M28.4028 51.8502C20.0187 51.9911 13.2377 52.8366 7.0529 54.6208H7.00779V54.4333C7.00779 53.9162 6.64205 48.5159 6.54939 47.5772C6.41162 46.8261 5.99955 45.8862 5.0864 44.4304C2.5664 40.5802 1.78736 36.6356 2.52007 31.1887C2.98335 27.9819 3.8709 18.3319 4.52193 11.2466C4.64384 9.92806 4.75601 8.69776 4.8572 7.61451C5.04007 5.73597 5.17784 4.2802 5.22294 3.48246V3.43467H5.26927C5.58991 3.29375 6.41406 2.91878 7.05534 2.59037C7.29917 2.46783 7.52472 2.35999 7.67345 2.29015C7.74782 2.25584 7.8039 2.2301 7.83438 2.21417H7.97214L8.06358 2.30853L8.29278 2.96534L8.38422 3.34154L8.42811 3.49349C9.44611 7.00181 11.2724 13.3028 14.5239 16.9594C18.463 21.4676 23.7773 24.3326 28.4052 24.3792C33.0319 24.3326 38.3462 21.4676 42.2866 16.9594C45.5844 13.2023 47.4631 6.76898 48.425 3.34154L48.5628 2.91878L48.792 2.26074C48.7934 2.23671 48.8035 2.21402 48.8203 2.19689C48.8371 2.17976 48.8596 2.16935 48.8834 2.16761H49.0212C49.1121 2.22313 49.2075 2.2707 49.3065 2.30976C49.4467 2.37348 49.6235 2.4519 49.7941 2.54258C50.4354 2.82442 51.2133 3.20062 51.5802 3.38811C51.6034 3.38811 51.6143 3.38811 51.6204 3.38811C51.6265 3.38811 51.6204 3.40526 51.6204 3.42855V3.47633C51.6643 3.86356 51.7094 4.40764 51.7643 5.07916C51.8228 5.78866 51.8862 6.64277 51.9862 7.60838C52.5824 14.5111 53.7735 27.3777 54.3233 31.1826C54.9122 36.5744 54.1539 40.4956 51.7399 44.2613L53.9771 45.2637C56.4069 41.0826 57.1335 36.8391 56.4764 31.1348C56.0131 27.928 55.1255 18.2792 54.4745 11.1927C54.3526 9.87414 54.2404 8.64507 54.1392 7.56182C54.0454 6.5962 53.9759 5.7421 53.9173 5.03136C53.8625 4.35984 53.8174 3.817 53.7735 3.42855C53.6357 2.53646 53.0859 1.73872 52.3995 1.45688C52.1288 1.34169 51.6985 1.16891 51.2303 0.998578C50.2721 0.585619 48.4263 -0.0295334 45.9026 0.00110154C43.2022 0.00110154 40.2469 1.25224 37.3746 3.1994C34.7049 5.04356 31.541 6.02938 28.3016 6.02639C25.0622 6.02938 21.8983 5.04356 19.2286 3.1994C16.416 1.26204 12.355 0.0133555 9.48512 0.00110154H9.44123C9.33151 0.00110154 9.223 0.00110124 9.11328 0.00845364C8.36097 0.0406702 7.6156 0.167045 6.89441 0.384652C6.62763 0.457247 6.36612 0.548143 6.11171 0.656695C5.8128 0.774881 5.52021 0.908625 5.23514 1.0574C4.93278 1.19464 4.59995 1.34414 4.34027 1.4581C3.70997 1.74485 3.1138 2.53768 2.97847 3.38811C2.84315 4.23853 2.70416 5.6894 2.5664 7.56794C2.46643 8.63526 2.35548 9.84596 2.23601 11.1437C1.58498 18.2338 0.694991 27.9181 0.229272 31.0944C-0.457114 37.0988 0.367038 41.4723 3.11624 45.8396C3.89528 46.9192 4.16959 47.8591 4.21348 48.0931C4.30492 48.9386 4.67067 54.0106 4.67067 54.6208C4.67067 55.3254 4.94619 56.03 5.44971 56.4528C5.81545 56.7812 6.32019 56.9687 7.00779 56.9687C7.1283 56.9652 7.24844 56.9538 7.36744 56.9344C7.40012 56.9285 7.43308 56.9244 7.4662 56.9221C13.4669 55.1379 19.8358 54.339 28.1736 54.339H28.5808C33.2343 54.339 37.2746 54.5841 40.9796 55.1183L40.3701 52.7018C36.7321 52.2031 32.7869 51.9213 28.4028 51.8502ZM15.9016 15.5036C14.7007 14.1447 13.5851 12.2098 12.544 9.7173C15.47 9.91459 18.1216 11.3716 20.1101 13.8653C21.695 15.8406 22.7654 18.3429 23.197 21.0044C20.627 19.8587 18.068 17.9532 15.9016 15.5036ZM40.8236 15.5036C38.6852 17.9152 36.1566 19.7987 33.6305 20.9493C34.067 18.3086 35.1325 15.8271 36.7077 13.8653C38.6584 11.4145 41.2978 9.96482 44.1665 9.72832C43.1266 12.2183 42.0135 14.1508 40.8175 15.5036H40.8236ZM10.575 2.60263C12.9914 2.60263 15.4517 3.43712 17.9156 5.10489C20.9746 7.21829 24.5994 8.34968 28.3114 8.34975C32.0021 8.35052 35.608 7.23622 38.6608 5.15146C41.1235 3.4359 43.585 2.60263 46.0013 2.60263H46.4573L46.4122 2.78766C45.9562 4.41009 45.5003 5.93939 45.0443 7.33021H44.9529C41.0772 7.33021 37.4758 9.09112 34.8765 12.336C32.7613 14.9436 31.4909 18.3196 31.1508 21.8377C30.2391 22.083 29.3002 22.211 28.3565 22.2188C27.4139 22.2119 26.4759 22.0859 25.5646 21.8438C25.2696 18.322 23.9529 14.9448 21.8364 12.336C19.2384 9.09112 15.6358 7.33021 11.7613 7.33021H11.6345C11.604 7.24566 11.5748 7.15989 11.5455 7.07288C11.1176 5.7568 10.6921 4.35372 10.2617 2.78399L10.2154 2.59895L10.575 2.60263Z", fill: fill }, void 0)] }), void 0));
|
|
572
|
+
};
|
|
573
|
+
|
|
574
|
+
var MembersOnlyDiscount = function (_a) {
|
|
575
|
+
var height = _a.height, width = _a.width, fill = _a.fill;
|
|
576
|
+
return (jsxs$1(IconWrapper, __assign$1({ width: width, height: height, viewBoxX: 63, viewBoxY: 65, title: "Style and Fashion Content" }, { children: [jsx$1("path", { d: "M50.7209 -0.00127498C51.5926 0.444097 51.6674 1.24856 51.6091 2.0822C53.3094 2.32709 53.7738 2.62908 53.7522 3.44623C53.7306 4.26338 53.2814 4.5235 51.8223 4.7151C51.5685 5.36983 51.401 5.98396 51.1041 6.52196C51 6.71102 50.5889 6.80365 50.3136 6.81253C49.4964 6.83918 49.2109 6.35828 49.0447 4.90924C48.3785 4.64658 47.7543 4.46006 47.201 4.14792C47.0183 4.04641 46.9473 3.62515 46.9473 3.34853C46.9473 2.5187 47.4548 2.23066 49.0802 2.10885C49.0257 1.27267 49.0307 0.414916 49.9684 -0.00634766L50.7209 -0.00127498Z", fill: fill }, void 0), jsx$1("path", { d: "M59.1836 25.2491C60.0553 25.6958 60.1301 26.5002 60.0654 27.3326C61.7657 27.5775 62.2301 27.8795 62.2085 28.6967C62.187 29.5138 61.7391 29.7752 60.2786 29.9719C60.0248 30.6266 59.8586 31.2407 59.5604 31.7775C59.4564 31.9678 59.0453 32.0604 58.7699 32.0693C57.9528 32.0959 57.6685 31.615 57.5011 30.166C56.8336 29.9033 56.2106 29.7168 55.6561 29.4047C55.4734 29.3032 55.4023 28.8806 55.4023 28.6053C55.4023 27.7755 55.9099 27.4874 57.5366 27.3656C57.4807 26.5294 57.4871 25.6717 58.4248 25.2491H59.1836Z", fill: fill }, void 0), jsx$1("path", { d: "M6.60742 45.2972L3.00004 51.5489C4.27778 52.2861 5.51366 53.0018 6.75207 53.7136C7.19364 53.9674 7.53496 54.2808 7.57049 54.8315C7.63774 55.8466 6.65056 56.5102 5.71794 56.028C4.87542 55.5928 4.06842 55.0903 3.24746 54.6158C2.46161 54.1641 1.67661 53.7111 0.892449 53.2568C-0.0693511 52.696 -0.231764 52.0819 0.331613 51.0998C1.83649 48.4876 3.3439 45.8771 4.85385 43.2683C5.46798 42.2063 6.03009 42.0515 7.07944 42.6453C7.24439 42.7379 7.41061 42.8267 7.62124 42.9422C8.79748 41.7647 9.97753 40.591 11.1462 39.4071C14.3653 36.1424 18.2619 34.4269 22.8451 34.3317C25.7812 34.2759 28.39 35.2199 30.6816 37.0661C30.989 37.3011 31.362 37.4342 31.7487 37.4468C34.0327 37.481 36.309 37.5368 38.5841 37.4468C42.1534 37.3072 44.6404 40.8232 43.2789 44.0588C43.255 44.1524 43.2393 44.248 43.232 44.3443C43.7941 44.2174 44.3257 44.1337 44.8421 43.9903C46.8438 43.4322 48.6636 42.358 50.1194 40.8752C51.4923 39.5023 52.8373 38.1015 54.247 36.7666C54.8591 36.1729 55.6178 35.752 56.4456 35.5471C57.2734 35.3422 58.1408 35.3605 58.9592 35.6002C59.7776 35.8398 60.5179 36.2923 61.1044 36.9114C61.6909 37.5304 62.1028 38.294 62.2979 39.1242C62.6646 40.6265 62.4553 42.1136 61.3882 43.2239C58.702 46.0154 56.1604 48.9833 52.9832 51.2571C49.7374 53.5791 46.0679 54.7477 42.0862 54.801C37.465 54.8607 32.8438 54.8175 28.2225 54.8201H27.5881C27.3673 55.3441 27.2252 55.8034 26.993 56.2158C25.5313 58.7789 24.0505 61.3319 22.5723 63.8861C21.9632 64.9393 21.3922 65.0903 20.3391 64.4825C18.805 63.5943 17.2748 62.7061 15.7382 61.8293C15.1938 61.5184 14.8614 61.0946 14.9578 60.4449C15.0936 59.5301 16.0351 59.1025 16.9017 59.5808C18.0272 60.2026 19.1311 60.8624 20.2452 61.5044C20.4228 61.6072 20.6068 61.7011 20.8339 61.8255L24.4363 55.5928L6.60742 45.2972ZM9.89505 44.225C9.96778 44.2885 10.044 44.3478 10.1234 44.4027C14.5755 46.9742 19.03 49.5429 23.4871 52.1085C23.7279 52.2308 23.995 52.2918 24.265 52.2861C30.0878 52.295 35.9119 52.3229 41.7347 52.2861C46.2696 52.2544 50.2361 50.6886 53.5351 47.5647C55.4499 45.7515 57.291 43.8609 59.1359 41.9817C59.4562 41.6497 59.6917 41.2453 59.8224 40.8029C59.9525 40.3204 59.9171 39.8081 59.7218 39.3481C59.5265 38.8881 59.1826 38.5068 58.7451 38.2652C57.8201 37.7373 56.7149 37.8934 55.9028 38.694C54.4614 40.1177 53.0593 41.5807 51.5887 42.9752C48.8074 45.6208 45.4715 46.9518 41.6345 46.9899C39.2503 47.0127 36.8661 46.9899 34.4819 46.9899C32.7943 46.9899 31.1054 46.9975 29.4178 46.9899C28.4954 46.9899 27.9409 46.41 28.0221 45.5802C28.0919 44.8823 28.6146 44.4636 29.4546 44.4623C32.5138 44.4623 35.5731 44.4623 38.6323 44.4623C40.1029 44.4623 41.0977 43.5652 41.1053 42.2507C41.113 40.9361 40.1334 40.0187 38.6678 40.0162C36.1301 40.0162 33.6038 40.0022 31.0724 40.0238C30.7689 40.0397 30.4654 39.992 30.1814 39.8839C29.8973 39.7757 29.639 39.6094 29.4229 39.3957C28.3639 38.3537 27.0472 37.6115 25.6074 37.245C22.0444 36.3568 18.7555 37.1448 15.6747 38.9935C13.42 40.336 11.8326 42.4372 9.88871 44.2238L9.89505 44.225Z", fill: fill }, void 0), jsx$1("path", { d: "M45.7803 22.3307C46.4997 24.5233 47.2166 26.6588 47.8993 28.8019C48.4436 30.52 47.5097 32.0819 45.8006 32.3547C45.0481 32.4816 44.3908 32.2279 43.7894 31.7863C42.1208 30.5669 40.4409 29.364 38.7913 28.1218C38.3942 27.8224 38.1417 27.849 37.7598 28.1358C36.0899 29.3881 34.4099 30.6266 32.7046 31.8294C30.9574 33.064 28.6633 32.0388 28.5173 29.9579C28.5064 29.4959 28.5799 29.0358 28.7343 28.6002C29.337 26.6969 29.9562 24.7936 30.6059 22.8979C30.7556 22.4627 30.6871 22.2279 30.3102 21.9615C28.5871 20.7527 26.8775 19.5223 25.1815 18.2703C23.8149 17.2552 23.6589 15.4687 24.7856 14.2912C25.3655 13.6859 26.0963 13.4918 26.911 13.4956C28.9411 13.5032 30.9612 13.4766 32.985 13.5121C33.5065 13.521 33.7171 13.3484 33.8656 12.8675C34.481 10.8767 35.1154 8.89089 35.7829 6.91653C36.279 5.44972 37.6862 4.74423 39.1086 5.20356C40.0272 5.50048 40.5551 6.17043 40.8431 7.06879C41.4648 9.01396 42.112 10.9502 42.7147 12.9056C42.8593 13.3801 43.07 13.5146 43.5509 13.5108C45.7435 13.4931 47.9386 13.4829 50.1299 13.54C51.2592 13.5679 52.0117 14.2379 52.3657 15.2948C52.7197 16.3518 52.4646 17.2933 51.6488 18.061C51.4266 18.2555 51.1923 18.4357 50.9471 18.6002C49.2405 19.8323 47.5326 21.0618 45.7803 22.3307ZM49.9434 16.1869L49.885 16.0244H42.5497C41.2428 16.0244 41.0119 15.8544 40.6058 14.5944C39.9206 12.4695 39.2359 10.3442 38.5515 8.21839C38.4868 8.01537 38.4018 7.81996 38.2724 7.48371C38.1544 7.82377 38.0897 8.00014 38.0313 8.17905C37.3165 10.3835 36.603 12.5875 35.8907 14.7911C35.5672 15.7897 35.2563 16.0219 34.1828 16.0244C31.8819 16.0244 29.5819 16.0244 27.2827 16.0244C27.0721 16.0244 26.8615 16.0498 26.496 16.0727C26.812 16.315 26.9757 16.4457 27.1444 16.5688C28.9724 17.891 30.8017 19.2127 32.6323 20.534C33.5826 21.223 33.6981 21.5821 33.3365 22.6835C32.6327 24.8253 31.9297 26.9667 31.2276 29.1077C31.1578 29.3184 31.1122 29.5353 31.0107 29.9236C31.3406 29.6927 31.5258 29.5683 31.706 29.4376L37.2294 25.4128C38.1112 24.7707 38.4576 24.7657 39.3255 25.3976C41.2009 26.7629 43.075 28.1303 44.9479 29.4998C45.1078 29.6165 45.2765 29.7231 45.5747 29.9236C45.4643 29.5429 45.4059 29.3298 45.3361 29.1166C44.6163 26.9172 43.8973 24.7153 43.1791 22.5109C42.886 21.6087 43.0129 21.2141 43.7716 20.6621C45.0684 19.7198 46.3669 18.7796 47.6671 17.8415C48.425 17.2942 49.1838 16.7435 49.9434 16.1894V16.1869Z", fill: fill }, void 0), jsx$1("path", { d: "M16.758 26.1716C15.1643 25.9927 14.7063 25.7085 14.6771 24.9028C14.6479 24.097 15.1085 23.776 16.7961 23.5146C16.8113 22.5947 16.7732 21.4997 18.0649 21.4743C19.4175 21.4489 19.3681 22.5719 19.3706 23.5134C21.1051 23.7951 21.482 24.0336 21.4972 24.8317C21.5086 25.371 21.2802 25.8087 20.7803 25.9813C20.3578 26.126 19.8845 26.1234 19.3846 26.1945C19.3541 27.1246 19.4569 28.1993 18.0814 28.2551C17.2503 28.2945 16.9902 27.844 16.758 26.1716Z", fill: fill }, void 0), jsx$1("path", { d: "M12.502 57.7727C12.5065 57.9363 12.478 58.0991 12.4185 58.2516C12.359 58.4041 12.2695 58.543 12.1554 58.6604C12.0412 58.7777 11.9048 58.871 11.754 58.9347C11.6033 58.9984 11.4413 59.0313 11.2776 59.0314C11.1092 59.035 10.9418 59.0047 10.7853 58.9424C10.6289 58.8801 10.4865 58.7871 10.3666 58.6688C10.2468 58.5504 10.1519 58.4093 10.0876 58.2536C10.0233 58.0979 9.99083 57.931 9.99223 57.7625C10.0039 57.4322 10.1422 57.119 10.3784 56.8878C10.6145 56.6566 10.9306 56.525 11.2611 56.5203C11.5913 56.5233 11.9069 56.6566 12.1393 56.8911C12.3717 57.1257 12.5021 57.4425 12.502 57.7727Z", fill: fill }, void 0)] }), void 0));
|
|
577
|
+
};
|
|
578
|
+
|
|
579
|
+
var MyAccount = /*#__PURE__*/Object.freeze({
|
|
580
|
+
__proto__: null,
|
|
581
|
+
FreeShipping: FreeShipping$1,
|
|
582
|
+
PersonalStylist: PersonalStylist,
|
|
583
|
+
Community: Community,
|
|
584
|
+
VIP: VIP,
|
|
585
|
+
DealsOffers: DealsOffers,
|
|
586
|
+
StyleFashionContent: StyleFashionContent,
|
|
587
|
+
MembersOnlyDiscount: MembersOnlyDiscount
|
|
588
|
+
});
|
|
589
|
+
|
|
538
590
|
var Icon = {
|
|
539
591
|
Custom: Custom$1,
|
|
540
592
|
Arrows: Arrows,
|
|
@@ -548,6 +600,7 @@ var Icon = {
|
|
|
548
600
|
Payment: Payment,
|
|
549
601
|
SlideDots: SlideDots$1,
|
|
550
602
|
Emoji: Emoji,
|
|
603
|
+
MyAccount: MyAccount,
|
|
551
604
|
};
|
|
552
605
|
|
|
553
606
|
function _extends$2() {
|
|
@@ -4155,7 +4208,7 @@ var TAGS = {
|
|
|
4155
4208
|
hero1: newStyled.h1(templateObject_1$16 || (templateObject_1$16 = __makeTemplateObject([""], [""]))),
|
|
4156
4209
|
hero2: newStyled.h2(templateObject_2$I || (templateObject_2$I = __makeTemplateObject([""], [""]))),
|
|
4157
4210
|
hero3: newStyled.h3(templateObject_3$v || (templateObject_3$v = __makeTemplateObject([""], [""]))),
|
|
4158
|
-
display1: newStyled.h1(templateObject_4$
|
|
4211
|
+
display1: newStyled.h1(templateObject_4$n || (templateObject_4$n = __makeTemplateObject([""], [""]))),
|
|
4159
4212
|
display2: newStyled.h2(templateObject_5$d || (templateObject_5$d = __makeTemplateObject([""], [""]))),
|
|
4160
4213
|
heading1: newStyled.h1(templateObject_6$8 || (templateObject_6$8 = __makeTemplateObject([""], [""]))),
|
|
4161
4214
|
heading2: newStyled.h2(templateObject_7$5 || (templateObject_7$5 = __makeTemplateObject([""], [""]))),
|
|
@@ -4275,7 +4328,7 @@ var DEFAULTS = {
|
|
|
4275
4328
|
size: 'regular',
|
|
4276
4329
|
},
|
|
4277
4330
|
};
|
|
4278
|
-
var templateObject_1$16, templateObject_2$I, templateObject_3$v, templateObject_4$
|
|
4331
|
+
var templateObject_1$16, templateObject_2$I, templateObject_3$v, templateObject_4$n, templateObject_5$d, templateObject_6$8, templateObject_7$5, templateObject_8$2, templateObject_9, templateObject_10, templateObject_11, templateObject_12, templateObject_13, templateObject_14, templateObject_15, templateObject_16, templateObject_17;
|
|
4279
4332
|
|
|
4280
4333
|
var ButtonsContainer = newStyled.div(templateObject_1$15 || (templateObject_1$15 = __makeTemplateObject(["\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n margin: ", ";\n"], ["\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n margin: ", ";\n"])), function (_a) {
|
|
4281
4334
|
var inline = _a.inline;
|
|
@@ -4423,31 +4476,41 @@ var getStylesBySize$5 = function (size) {
|
|
|
4423
4476
|
case ComponentSize.Large:
|
|
4424
4477
|
return {
|
|
4425
4478
|
fontSize: '1.5rem',
|
|
4479
|
+
finalPricefontSize: '36px',
|
|
4480
|
+
finalPricefontSizeSmall: '18px',
|
|
4426
4481
|
margin: '0 0 0 0.75rem',
|
|
4427
4482
|
lineHeight: '2rem',
|
|
4428
4483
|
};
|
|
4429
4484
|
case ComponentSize.Medium:
|
|
4430
4485
|
return {
|
|
4431
4486
|
fontSize: '1.125rem',
|
|
4487
|
+
finalPricefontSize: '32px',
|
|
4488
|
+
finalPricefontSizeSmall: '16px',
|
|
4432
4489
|
margin: '0 0 0 0.5rem',
|
|
4433
4490
|
lineHeight: '1.25rem',
|
|
4434
4491
|
};
|
|
4435
4492
|
case ComponentSize.Small:
|
|
4436
4493
|
return {
|
|
4437
4494
|
fontSize: '1rem',
|
|
4495
|
+
finalPricefontSize: '24px',
|
|
4496
|
+
finalPricefontSizeSmall: '12px',
|
|
4438
4497
|
margin: '0 0 0 0.5rem',
|
|
4439
4498
|
lineHeight: '1.25rem',
|
|
4440
4499
|
};
|
|
4441
4500
|
}
|
|
4442
4501
|
};
|
|
4443
4502
|
var Container$E = newStyled.div(templateObject_1$11 || (templateObject_1$11 = __makeTemplateObject(["\n display: flex;\n align-items: center;\n"], ["\n display: flex;\n align-items: center;\n"])));
|
|
4444
|
-
var Price = newStyled.h1(templateObject_2$F || (templateObject_2$F = __makeTemplateObject(["\n font-weight: ", ";\n font-size: ", ";\n line-height: ", ";\n color: ", ";\n text-decoration: ", ";\n margin: ", ";\n"], ["\n font-weight: ", ";\n font-size: ", ";\n line-height: ", ";\n color: ", ";\n text-decoration: ", ";\n margin: ", ";\n"])), function (_a) {
|
|
4503
|
+
var Price = newStyled.h1(templateObject_2$F || (templateObject_2$F = __makeTemplateObject(["\n font-weight: ", ";\n font-size: ", ";\n line-height: ", ";\n color: ", ";\n text-decoration: ", ";\n margin: ", ";\n margin-top: ", ";\n"], ["\n font-weight: ", ";\n font-size: ", ";\n line-height: ", ";\n color: ", ";\n text-decoration: ", ";\n margin: ", ";\n margin-top: ", ";\n"])), function (_a) {
|
|
4445
4504
|
var weight = _a.weight;
|
|
4446
4505
|
return (weight ? weight : '400');
|
|
4447
4506
|
}, function (_a) {
|
|
4448
|
-
var _b;
|
|
4449
|
-
var size = _a.size;
|
|
4450
|
-
return
|
|
4507
|
+
var _b, _c, _d;
|
|
4508
|
+
var size = _a.size, finalPriceStyled = _a.finalPriceStyled, finalPriceStyledSmall = _a.finalPriceStyledSmall;
|
|
4509
|
+
return finalPriceStyled || finalPriceStyledSmall
|
|
4510
|
+
? finalPriceStyledSmall
|
|
4511
|
+
? (_b = getStylesBySize$5(size)) === null || _b === void 0 ? void 0 : _b.finalPricefontSizeSmall
|
|
4512
|
+
: (_c = getStylesBySize$5(size)) === null || _c === void 0 ? void 0 : _c.finalPricefontSize
|
|
4513
|
+
: (_d = getStylesBySize$5(size)) === null || _d === void 0 ? void 0 : _d.fontSize;
|
|
4451
4514
|
}, function (_a) {
|
|
4452
4515
|
var _b;
|
|
4453
4516
|
var size = _a.size;
|
|
@@ -4462,12 +4525,16 @@ var Price = newStyled.h1(templateObject_2$F || (templateObject_2$F = __makeTempl
|
|
|
4462
4525
|
var _b;
|
|
4463
4526
|
var margin = _a.margin, size = _a.size;
|
|
4464
4527
|
return (margin ? (_b = getStylesBySize$5(size)) === null || _b === void 0 ? void 0 : _b.margin : '0');
|
|
4528
|
+
}, function (_a) {
|
|
4529
|
+
var finalPriceStyledSmall = _a.finalPriceStyledSmall, size = _a.size;
|
|
4530
|
+
return finalPriceStyledSmall ? (size === 'large' ? '-10px' : '-7px') : '0';
|
|
4465
4531
|
});
|
|
4466
4532
|
var TagContainer = newStyled.h1(templateObject_3$t || (templateObject_3$t = __makeTemplateObject(["\n margin: ", ";\n display: flex;\n align-items: center;\n"], ["\n margin: ", ";\n display: flex;\n align-items: center;\n"])), function (_a) {
|
|
4467
4533
|
var _b;
|
|
4468
4534
|
var size = _a.size;
|
|
4469
4535
|
return (_b = getStylesBySize$5(size)) === null || _b === void 0 ? void 0 : _b.margin;
|
|
4470
4536
|
});
|
|
4537
|
+
var FinalPriceContainer = newStyled.div(templateObject_4$m || (templateObject_4$m = __makeTemplateObject(["\n display: flex;\n"], ["\n display: flex;\n"])));
|
|
4471
4538
|
function getTestId() {
|
|
4472
4539
|
var args = [];
|
|
4473
4540
|
for (var _i = 0; _i < arguments.length; _i++) {
|
|
@@ -4476,11 +4543,21 @@ function getTestId() {
|
|
|
4476
4543
|
return args.filter(Boolean).join('-');
|
|
4477
4544
|
}
|
|
4478
4545
|
var PriceLabel = function (_a) {
|
|
4479
|
-
var finalPrice = _a.finalPrice, originalPrice = _a.originalPrice, discount = _a.discount, color = _a.color, testId = _a.testId, _b = _a.size, size =
|
|
4546
|
+
var finalPrice = _a.finalPrice, originalPrice = _a.originalPrice, discount = _a.discount, color = _a.color, testId = _a.testId, _b = _a.finalPriceStyled, finalPriceStyled = _b === void 0 ? false : _b, _c = _a.size, size = _c === void 0 ? ComponentSize.Medium : _c;
|
|
4480
4547
|
var theme = useTheme();
|
|
4481
|
-
|
|
4548
|
+
var finalPriceArray = ['', ''];
|
|
4549
|
+
if (typeof finalPrice === 'string' && finalPrice.includes('.') && finalPrice.includes('$'))
|
|
4550
|
+
finalPriceArray = finalPrice.split('$')[1].split('.');
|
|
4551
|
+
var availableFinalPriceStyled = finalPriceStyled && finalPriceArray[0];
|
|
4552
|
+
var priceCommonProps = {
|
|
4553
|
+
size: size,
|
|
4554
|
+
color: color || theme.colors.pallete.secondary.color,
|
|
4555
|
+
weight: 700,
|
|
4556
|
+
};
|
|
4557
|
+
var OriginalPrice = function () { return (jsx$1(Price, __assign$1({ size: size, color: theme.colors.shades['300'].color, margin: true, underlined: true, "data-testid": getTestId(testId, 'discount') }, { children: originalPrice }), void 0)); };
|
|
4558
|
+
return (jsxs$1(Container$E, { children: [availableFinalPriceStyled && originalPrice && jsx$1(OriginalPrice, {}, void 0), availableFinalPriceStyled ? (jsxs$1(FinalPriceContainer, __assign$1({ "data-testid": getTestId(testId, 'price') }, { children: [jsx$1(Price, __assign$1({ margin: true, finalPriceStyledSmall: true }, priceCommonProps, { children: "$" }), void 0), jsx$1(Price, __assign$1({ finalPriceStyled: true }, priceCommonProps, { children: finalPriceArray[0] }), void 0), jsx$1(Price, __assign$1({ finalPriceStyledSmall: true }, priceCommonProps, { children: finalPriceArray[1] }), void 0)] }), void 0)) : (jsxs$1(FinalPriceContainer, { children: [jsx$1(Price, __assign$1({ margin: true, "data-testid": getTestId(testId, 'price') }, priceCommonProps, { children: finalPrice }), void 0), originalPrice && jsx$1(OriginalPrice, {}, void 0)] }, void 0)), discount && (jsx$1(TagContainer, __assign$1({ size: size }, { children: jsx$1(DiscountTag, __assign$1({}, discount, { size: size }), void 0) }), void 0))] }, void 0));
|
|
4482
4559
|
};
|
|
4483
|
-
var templateObject_1$11, templateObject_2$F, templateObject_3$t;
|
|
4560
|
+
var templateObject_1$11, templateObject_2$F, templateObject_3$t, templateObject_4$m;
|
|
4484
4561
|
|
|
4485
4562
|
var OneColorSelector = function (_a) {
|
|
4486
4563
|
var color = _a.color, selected = _a.selected, testId = _a.testId;
|
|
@@ -4504,13 +4581,15 @@ var TwoColorSelector = function (_a) {
|
|
|
4504
4581
|
};
|
|
4505
4582
|
|
|
4506
4583
|
var ColorSelector = function (_a) {
|
|
4507
|
-
var
|
|
4508
|
-
|
|
4584
|
+
var color = _a.color, selected = _a.selected, testId = _a.testId;
|
|
4585
|
+
var primaryColor = color[0], secondaryColor = color[1], tertiaryColor = color[2];
|
|
4586
|
+
if (tertiaryColor) {
|
|
4509
4587
|
return (jsx$1(ThreeColorSelector, { primaryColor: primaryColor, secondaryColor: secondaryColor, tertiaryColor: tertiaryColor, selected: selected, testId: testId }, void 0));
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4588
|
+
}
|
|
4589
|
+
if (secondaryColor) {
|
|
4590
|
+
return (jsx$1(TwoColorSelector, { secondaryColor: secondaryColor, primaryColor: primaryColor, selected: selected, testId: testId }, void 0));
|
|
4591
|
+
}
|
|
4592
|
+
return jsx$1(OneColorSelector, { color: primaryColor, selected: selected, testId: testId }, void 0);
|
|
4514
4593
|
};
|
|
4515
4594
|
|
|
4516
4595
|
var OutOfStock = function (_a) {
|
|
@@ -4563,7 +4642,7 @@ var renderOptions$1 = function (options) {
|
|
|
4563
4642
|
return options.map(function (option) { return (jsx(ColorRadioGroup$1.Option, __assign$1({ value: option }, { children: function (_a) {
|
|
4564
4643
|
var checked = _a.checked;
|
|
4565
4644
|
if (option.meta.color) {
|
|
4566
|
-
return (jsx(ColorSelector,
|
|
4645
|
+
return (jsx(ColorSelector, { color: option.meta.color, selected: checked, testId: "".concat(option.label.split(' ').join('-').toLowerCase(), "-selector") }, void 0));
|
|
4567
4646
|
}
|
|
4568
4647
|
if (option.meta.pattern) {
|
|
4569
4648
|
return jsx(PatternSelector, { url: option.meta.pattern.url, selected: checked }, void 0);
|
|
@@ -4580,7 +4659,7 @@ var renderOptions = function (selectedColor, options) {
|
|
|
4580
4659
|
if (options == null || options.length === 0) {
|
|
4581
4660
|
return jsx$1(OutOfStock, { title: "out of stock color" }, void 0);
|
|
4582
4661
|
}
|
|
4583
|
-
return options.map(function (option) { return (jsx$1(ColorRadioGroup$1.Option, __assign$1({ value: option }, { children: option.meta.color ? (jsx$1(ColorSelector,
|
|
4662
|
+
return options.map(function (option) { return (jsx$1(ColorRadioGroup$1.Option, __assign$1({ value: option }, { children: option.meta.color ? (jsx$1(ColorSelector, { color: option.meta.color, selected: selectedColor.has(option), testId: "".concat(option.label, "-selector") }, void 0)) : option.meta.pattern ? (jsx$1(PatternSelector, { url: option.meta.pattern.url, selected: selectedColor.has(option) }, void 0)) : null }), option.label)); });
|
|
4584
4663
|
};
|
|
4585
4664
|
var getInitialValue = function (options, selectedValue) {
|
|
4586
4665
|
if (selectedValue && options.includes(selectedValue))
|