@artsy/palette-mobile 13.2.33 → 13.2.35

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.
Files changed (327) hide show
  1. package/dist/Theme.js +9 -13
  2. package/dist/animation/CssTransition.js +8 -12
  3. package/dist/animation/index.js +1 -17
  4. package/dist/constants.js +4 -8
  5. package/dist/elements/ArtsyKeyboardAvoidingView/ArtsyKeyboardAvoidingView.js +19 -23
  6. package/dist/elements/ArtsyKeyboardAvoidingView/index.js +1 -17
  7. package/dist/elements/Autocomplete/Autocomplete.js +4 -8
  8. package/dist/elements/Autocomplete/Autocomplete.tests.js +9 -11
  9. package/dist/elements/Autocomplete/index.js +1 -17
  10. package/dist/elements/Avatar/Avatar.js +17 -44
  11. package/dist/elements/Avatar/Avatar.stories.js +7 -11
  12. package/dist/elements/Avatar/Avatar.tests.js +8 -10
  13. package/dist/elements/Avatar/index.js +1 -17
  14. package/dist/elements/BackButton/BackButton.js +9 -14
  15. package/dist/elements/BackButton/BackButton.stories.js +8 -12
  16. package/dist/elements/BackButton/index.js +1 -17
  17. package/dist/elements/Banner/Banner.js +14 -18
  18. package/dist/elements/Banner/Banner.stories.js +7 -11
  19. package/dist/elements/Banner/index.js +1 -17
  20. package/dist/elements/BorderBox/BorderBox.js +9 -15
  21. package/dist/elements/BorderBox/index.js +1 -17
  22. package/dist/elements/Box/Box.js +11 -17
  23. package/dist/elements/Box/Box.stories.js +14 -20
  24. package/dist/elements/Box/index.js +1 -17
  25. package/dist/elements/Button/Button.js +30 -37
  26. package/dist/elements/Button/Button.stories.js +18 -25
  27. package/dist/elements/Button/CTAButton.js +3 -7
  28. package/dist/elements/Button/FollowButton.js +7 -11
  29. package/dist/elements/Button/LinkButton.js +4 -8
  30. package/dist/elements/Button/colors.js +3 -7
  31. package/dist/elements/Button/index.js +4 -20
  32. package/dist/elements/ButtonNew/Button.js +32 -62
  33. package/dist/elements/ButtonNew/Button.stories.js +36 -50
  34. package/dist/elements/ButtonNew/Button.tests.js +13 -15
  35. package/dist/elements/ButtonNew/CTAButton.js +3 -7
  36. package/dist/elements/ButtonNew/FollowButton.js +7 -11
  37. package/dist/elements/ButtonNew/LinkButton.js +4 -8
  38. package/dist/elements/ButtonNew/colors.js +3 -7
  39. package/dist/elements/ButtonNew/index.js +4 -20
  40. package/dist/elements/Checkbox/Check.js +29 -56
  41. package/dist/elements/Checkbox/Checkbox.js +22 -30
  42. package/dist/elements/Checkbox/Checkbox.stories.js +8 -12
  43. package/dist/elements/Checkbox/index.js +2 -18
  44. package/dist/elements/ClassTheme/ClassTheme.js +5 -9
  45. package/dist/elements/ClassTheme/index.js +1 -17
  46. package/dist/elements/Collapse/Collapse.js +4 -8
  47. package/dist/elements/Collapse/Collapse.stories.js +9 -13
  48. package/dist/elements/Collapse/index.js +1 -17
  49. package/dist/elements/CollapsibleMenuItem/CollapsibleMenuItem.js +18 -21
  50. package/dist/elements/CollapsibleMenuItem/CollapsibleMenuItem.stories.js +30 -38
  51. package/dist/elements/CollapsibleMenuItem/index.js +1 -17
  52. package/dist/elements/Dialog/Dialog.js +20 -24
  53. package/dist/elements/Dialog/Dialog.stories.js +14 -16
  54. package/dist/elements/Dialog/Dialog.tests.js +12 -14
  55. package/dist/elements/Dialog/index.js +1 -17
  56. package/dist/elements/EntityHeader/EntityHeader.js +14 -18
  57. package/dist/elements/EntityHeader/EntityHeader.stories.js +17 -25
  58. package/dist/elements/EntityHeader/index.js +1 -17
  59. package/dist/elements/Flex/Flex.js +4 -7
  60. package/dist/elements/Flex/index.js +1 -17
  61. package/dist/elements/Header/ArtsyLogoHeader.js +8 -12
  62. package/dist/elements/Header/index.js +1 -17
  63. package/dist/elements/Histogram/Histogram.js +6 -10
  64. package/dist/elements/Histogram/index.js +1 -17
  65. package/dist/elements/Image/Image.js +26 -55
  66. package/dist/elements/Image/Image.stories.js +14 -16
  67. package/dist/elements/Image/index.js +1 -17
  68. package/dist/elements/Input/Input.js +127 -157
  69. package/dist/elements/Input/Input.stories.js +9 -11
  70. package/dist/elements/Input/Input.tests.js +17 -19
  71. package/dist/elements/Input/InputTitle.js +4 -8
  72. package/dist/elements/Input/helpers.d.ts +1 -1
  73. package/dist/elements/Input/helpers.js +51 -56
  74. package/dist/elements/Input/index.js +3 -19
  75. package/dist/elements/Input/maskValue.js +5 -10
  76. package/dist/elements/Input/maskValue.tests.js +11 -13
  77. package/dist/elements/Join/Join.js +6 -10
  78. package/dist/elements/Join/index.js +1 -17
  79. package/dist/elements/LazyFlatlist/LazyFlatlist.js +3 -7
  80. package/dist/elements/LazyFlatlist/index.js +2 -18
  81. package/dist/elements/LazyFlatlist/useHasSeenItem.js +6 -10
  82. package/dist/elements/LegacyScreen/LegacyScreen.js +51 -59
  83. package/dist/elements/LegacyScreen/index.js +1 -17
  84. package/dist/elements/LegacyTabs/ContentTabs.js +8 -12
  85. package/dist/elements/LegacyTabs/NavigationalTabs.js +11 -15
  86. package/dist/elements/LegacyTabs/StepTabs.js +15 -19
  87. package/dist/elements/LegacyTabs/Tab.js +9 -13
  88. package/dist/elements/LegacyTabs/TabBarContainer.js +28 -34
  89. package/dist/elements/LegacyTabs/index.js +9 -15
  90. package/dist/elements/List/BulletedItem.js +7 -11
  91. package/dist/elements/List/List.stories.js +8 -10
  92. package/dist/elements/List/index.js +1 -17
  93. package/dist/elements/MeasuredView/MeasuredView.js +10 -15
  94. package/dist/elements/MeasuredView/index.js +1 -17
  95. package/dist/elements/MenuItem/MenuItem.js +9 -13
  96. package/dist/elements/MenuItem/MenuItem.stories.js +5 -9
  97. package/dist/elements/MenuItem/index.js +1 -17
  98. package/dist/elements/Message/Message.js +15 -19
  99. package/dist/elements/Message/Message.stories.js +10 -12
  100. package/dist/elements/Message/Message.tests.js +9 -11
  101. package/dist/elements/Message/index.js +1 -17
  102. package/dist/elements/Pill/Pill.js +53 -83
  103. package/dist/elements/Pill/Pill.stories.js +16 -18
  104. package/dist/elements/Pill/Pill.tests.js +8 -10
  105. package/dist/elements/Pill/index.js +1 -17
  106. package/dist/elements/PopIn/PopIn.js +8 -12
  107. package/dist/elements/PopIn/index.js +1 -17
  108. package/dist/elements/Popover/Popover.js +21 -28
  109. package/dist/elements/Popover/Popover.stories.js +15 -17
  110. package/dist/elements/Popover/index.js +1 -17
  111. package/dist/elements/ProgressBar/ProgressBar.js +16 -43
  112. package/dist/elements/ProgressBar/ProgressBar.stories.js +6 -8
  113. package/dist/elements/ProgressBar/ProgressBar.tests.js +7 -9
  114. package/dist/elements/ProgressBar/index.js +1 -17
  115. package/dist/elements/Radio/RadioButton.js +20 -28
  116. package/dist/elements/Radio/RadioButton.stories.js +13 -15
  117. package/dist/elements/Radio/RadioDot.js +10 -14
  118. package/dist/elements/Radio/index.js +2 -7
  119. package/dist/elements/Screen/Background.js +3 -7
  120. package/dist/elements/Screen/Body.js +9 -13
  121. package/dist/elements/Screen/BottomView.js +9 -16
  122. package/dist/elements/Screen/FloatingHeader.js +9 -13
  123. package/dist/elements/Screen/FullWidthDivider.js +5 -9
  124. package/dist/elements/Screen/FullWidthItem.js +5 -9
  125. package/dist/elements/Screen/Header.js +21 -49
  126. package/dist/elements/Screen/Screen.stories.js +18 -20
  127. package/dist/elements/Screen/ScreenBase.js +9 -13
  128. package/dist/elements/Screen/ScreenFlatList.js +8 -15
  129. package/dist/elements/Screen/ScreenScrollContext.js +9 -14
  130. package/dist/elements/Screen/ScreenScrollView.js +8 -15
  131. package/dist/elements/Screen/StickySubHeader.js +20 -47
  132. package/dist/elements/Screen/constants.js +5 -8
  133. package/dist/elements/Screen/hooks/useAnimatedHeaderScrolling.js +10 -14
  134. package/dist/elements/Screen/hooks/useListenForScreenScroll.js +10 -14
  135. package/dist/elements/Screen/index.js +29 -46
  136. package/dist/elements/SearchInput/SearchInput.js +6 -10
  137. package/dist/elements/SearchInput/index.js +1 -17
  138. package/dist/elements/Separator/Separator.js +9 -15
  139. package/dist/elements/Separator/Separator.stories.js +6 -10
  140. package/dist/elements/Separator/ShadowSeparator.js +3 -9
  141. package/dist/elements/Separator/index.js +2 -18
  142. package/dist/elements/SimpleMessage/SimpleMessage.js +9 -16
  143. package/dist/elements/SimpleMessage/index.js +1 -17
  144. package/dist/elements/Skeleton/Skeleton.js +16 -45
  145. package/dist/elements/Skeleton/Skeleton.stories.js +10 -14
  146. package/dist/elements/Skeleton/index.js +1 -17
  147. package/dist/elements/Spacer/Spacer.js +3 -7
  148. package/dist/elements/Spacer/Spacer.stories.js +15 -20
  149. package/dist/elements/Spacer/index.js +1 -17
  150. package/dist/elements/Spinner/Spinner.js +15 -23
  151. package/dist/elements/Spinner/index.js +1 -17
  152. package/dist/elements/Switch/Switch.js +8 -12
  153. package/dist/elements/Switch/Switch.stories.js +11 -15
  154. package/dist/elements/Switch/index.js +1 -17
  155. package/dist/elements/Tabs/SubTabBar.js +11 -15
  156. package/dist/elements/Tabs/TabFlashList.js +8 -12
  157. package/dist/elements/Tabs/TabFlatList.js +8 -12
  158. package/dist/elements/Tabs/TabMasonry.js +8 -12
  159. package/dist/elements/Tabs/TabScrollView.js +8 -12
  160. package/dist/elements/Tabs/Tabs.js +24 -27
  161. package/dist/elements/Tabs/Tabs.stories.js +11 -13
  162. package/dist/elements/Tabs/TabsContainer.js +15 -19
  163. package/dist/elements/Tabs/TabsWithHeader.js +8 -12
  164. package/dist/elements/Tabs/hooks/useListenForTabContentScroll.js +8 -12
  165. package/dist/elements/Tabs/index.js +1 -17
  166. package/dist/elements/Text/LinkText.js +3 -7
  167. package/dist/elements/Text/Text.js +15 -21
  168. package/dist/elements/Text/Text.stories.js +18 -27
  169. package/dist/elements/Text/Text.tests.js +3 -5
  170. package/dist/elements/Text/helpers.js +5 -10
  171. package/dist/elements/Text/index.js +3 -19
  172. package/dist/elements/ToolTip/ToolTip.js +29 -34
  173. package/dist/elements/ToolTip/ToolTip.stories.js +11 -13
  174. package/dist/elements/ToolTip/ToolTip.tests.js +7 -9
  175. package/dist/elements/ToolTip/ToolTipFlyout.js +19 -47
  176. package/dist/elements/ToolTip/index.js +1 -17
  177. package/dist/elements/Touchable/Touchable.js +12 -19
  178. package/dist/elements/Touchable/Touchable.stories.js +9 -13
  179. package/dist/elements/Touchable/TouchableHighlightColor.js +6 -10
  180. package/dist/elements/Touchable/TouchableWithScale.js +7 -11
  181. package/dist/elements/Touchable/index.js +3 -19
  182. package/dist/elements/VisualClue/VisualClue.stories.js +6 -8
  183. package/dist/elements/VisualClue/VisualClueDot.js +6 -10
  184. package/dist/elements/VisualClue/VisualClueText.js +9 -13
  185. package/dist/elements/VisualClue/index.js +2 -18
  186. package/dist/elements/index.js +45 -61
  187. package/dist/index.js +10 -26
  188. package/dist/setupJest.js +2 -7
  189. package/dist/storybook/decorators.js +20 -28
  190. package/dist/storybook/helpers.js +6 -12
  191. package/dist/svgs/AddCircleFillIcon.js +6 -10
  192. package/dist/svgs/AddCircleIcon.js +6 -10
  193. package/dist/svgs/AddIcon.js +6 -10
  194. package/dist/svgs/AlertCircleFillIcon.js +6 -10
  195. package/dist/svgs/AlertIcon.js +6 -10
  196. package/dist/svgs/ArrowCircleFillIcons.js +7 -12
  197. package/dist/svgs/ArrowDownCircleIcon.js +6 -10
  198. package/dist/svgs/ArrowDownIcon.js +6 -10
  199. package/dist/svgs/ArrowLeftCircleIcon.js +6 -10
  200. package/dist/svgs/ArrowLeftIcon.js +6 -10
  201. package/dist/svgs/ArrowRightCircleIcon.js +6 -10
  202. package/dist/svgs/ArrowRightIcon.js +6 -10
  203. package/dist/svgs/ArrowUpCircleIcon.js +6 -10
  204. package/dist/svgs/ArrowUpIcon.js +6 -10
  205. package/dist/svgs/ArtsyLogoBlackIcon.js +6 -10
  206. package/dist/svgs/ArtsyLogoWhiteIcon.js +4 -8
  207. package/dist/svgs/ArtsyMarkBlackIcon.js +6 -10
  208. package/dist/svgs/ArtsyMarkWhiteIcon.js +4 -8
  209. package/dist/svgs/ArtworkIcon.js +6 -10
  210. package/dist/svgs/AuctionIcon.js +6 -10
  211. package/dist/svgs/BellFillIcon.js +6 -10
  212. package/dist/svgs/BellIcon.js +6 -10
  213. package/dist/svgs/BlueChipIcon.js +6 -10
  214. package/dist/svgs/BoltCircleFill.js +6 -10
  215. package/dist/svgs/BoltFill.js +6 -10
  216. package/dist/svgs/BookmarkFill.js +6 -10
  217. package/dist/svgs/BriefcaseIcon.js +6 -10
  218. package/dist/svgs/CertificateIcon.js +6 -10
  219. package/dist/svgs/CheckCircleFillIcon.js +6 -10
  220. package/dist/svgs/CheckCircleIcon.js +6 -10
  221. package/dist/svgs/CheckIcon.js +6 -10
  222. package/dist/svgs/ChevronIcon.js +11 -15
  223. package/dist/svgs/ClockFill.js +6 -10
  224. package/dist/svgs/CloseCircleFillIcon.js +6 -10
  225. package/dist/svgs/CloseCircleIcon.js +6 -10
  226. package/dist/svgs/CloseIcon.js +6 -10
  227. package/dist/svgs/CollapseIcon.js +6 -10
  228. package/dist/svgs/CreditCardIcon.js +14 -18
  229. package/dist/svgs/DecreaseIcon.js +6 -10
  230. package/dist/svgs/DocumentIcon.js +6 -10
  231. package/dist/svgs/DownloadIcon.js +6 -10
  232. package/dist/svgs/EditIcon.js +6 -10
  233. package/dist/svgs/EmptyCheckCircleIcon.js +6 -10
  234. package/dist/svgs/EnterIcon.js +6 -10
  235. package/dist/svgs/EnvelopeIcon.js +6 -10
  236. package/dist/svgs/EstablishedIcon.js +6 -10
  237. package/dist/svgs/ExclamationMarkCircleFill.js +6 -10
  238. package/dist/svgs/ExpandIcon.js +6 -10
  239. package/dist/svgs/EyeClosedIcon.js +6 -10
  240. package/dist/svgs/EyeOpenedIcon.js +6 -10
  241. package/dist/svgs/FacebookIcon.js +6 -10
  242. package/dist/svgs/FairIcon.js +6 -10
  243. package/dist/svgs/FilterIcon.js +6 -10
  244. package/dist/svgs/FullWidthIcon.js +6 -10
  245. package/dist/svgs/GenomeIcon.js +6 -10
  246. package/dist/svgs/GraphIcon.js +6 -10
  247. package/dist/svgs/GridIcon.js +6 -10
  248. package/dist/svgs/GuaranteeIcon.js +7 -11
  249. package/dist/svgs/HeartFillIcon.js +6 -10
  250. package/dist/svgs/HeartIcon.js +6 -10
  251. package/dist/svgs/HideIcon.js +6 -10
  252. package/dist/svgs/HomeIcon.js +6 -10
  253. package/dist/svgs/Icon.js +15 -30
  254. package/dist/svgs/ImageIcon.js +6 -10
  255. package/dist/svgs/ImageSetIcon.js +6 -10
  256. package/dist/svgs/IncreaseIcon.js +6 -10
  257. package/dist/svgs/InfoCircleIcon.js +6 -10
  258. package/dist/svgs/InstagramAppIcon.js +3 -7
  259. package/dist/svgs/InstitutionIcon.js +6 -10
  260. package/dist/svgs/LinkIcon.js +6 -10
  261. package/dist/svgs/LoaderIcon.js +6 -10
  262. package/dist/svgs/LockIcon.js +6 -10
  263. package/dist/svgs/LogoutIcon.js +6 -10
  264. package/dist/svgs/MagnifyingGlassIcon.js +6 -10
  265. package/dist/svgs/MapPinIcon.js +6 -10
  266. package/dist/svgs/MenuIcon.js +6 -10
  267. package/dist/svgs/MessageIcon.js +7 -11
  268. package/dist/svgs/MessagesAppIcon.js +4 -8
  269. package/dist/svgs/MoneyCircleIcon.js +6 -10
  270. package/dist/svgs/MoneyFillIcon.js +6 -10
  271. package/dist/svgs/MoreIcon.js +6 -10
  272. package/dist/svgs/MultiplePersonsIcon.js +6 -10
  273. package/dist/svgs/NoArtworkIcon.js +6 -10
  274. package/dist/svgs/NoImageIcon.js +6 -10
  275. package/dist/svgs/PageIcon.js +6 -10
  276. package/dist/svgs/Payment2Icon.js +6 -10
  277. package/dist/svgs/PaymentIcon.js +6 -10
  278. package/dist/svgs/PersonIcon.js +6 -10
  279. package/dist/svgs/PublicationIcon.js +6 -10
  280. package/dist/svgs/QuestionCircleIcon.js +6 -10
  281. package/dist/svgs/ReloadIcon.js +6 -10
  282. package/dist/svgs/SecureLockIcon.js +6 -10
  283. package/dist/svgs/SettingsIcon.js +6 -10
  284. package/dist/svgs/ShareIcon.js +6 -10
  285. package/dist/svgs/ShieldFilledIcon.js +6 -10
  286. package/dist/svgs/ShieldIcon.js +6 -10
  287. package/dist/svgs/StarCircleFill.js +6 -10
  288. package/dist/svgs/StarCircleIcon.js +6 -10
  289. package/dist/svgs/Stopwatch.js +6 -10
  290. package/dist/svgs/Tag2Icon.js +7 -11
  291. package/dist/svgs/TagIcon.js +6 -10
  292. package/dist/svgs/TimerIcon.js +6 -10
  293. package/dist/svgs/TopEmergingIcon.js +6 -10
  294. package/dist/svgs/TrashIcon.js +6 -10
  295. package/dist/svgs/TrendingIcon.js +6 -10
  296. package/dist/svgs/TriangleDown.js +6 -10
  297. package/dist/svgs/TwitterIcon.js +6 -10
  298. package/dist/svgs/UserMultiIcon.js +6 -10
  299. package/dist/svgs/UserSingleIcon.js +6 -10
  300. package/dist/svgs/VerifiedIcon.js +6 -10
  301. package/dist/svgs/VerifiedPersonIcon.js +6 -10
  302. package/dist/svgs/WhatsAppAppIcon.js +4 -8
  303. package/dist/svgs/WorldGlobeCircleIcon.js +6 -10
  304. package/dist/svgs/XCircleIcon.js +6 -10
  305. package/dist/svgs/icons.stories.js +11 -38
  306. package/dist/svgs/index.js +113 -129
  307. package/dist/tokens.js +9 -12
  308. package/dist/types.js +5 -10
  309. package/dist/utils/Wrap.js +7 -11
  310. package/dist/utils/colors.stories.js +16 -20
  311. package/dist/utils/createGeminiUrl.js +6 -10
  312. package/dist/utils/flattenChildren.js +5 -9
  313. package/dist/utils/formatLargeNumber.js +1 -5
  314. package/dist/utils/formatLargeNumbers.tests.js +8 -10
  315. package/dist/utils/hooks/index.js +4 -20
  316. package/dist/utils/hooks/useColor.js +2 -6
  317. package/dist/utils/hooks/useMeasure.js +4 -8
  318. package/dist/utils/hooks/useScreenDimensions.js +11 -16
  319. package/dist/utils/hooks/useSpace.js +2 -6
  320. package/dist/utils/hooks/useTheme.js +6 -10
  321. package/dist/utils/normalizeText.js +1 -5
  322. package/dist/utils/space.stories.js +9 -13
  323. package/dist/utils/tests/renderWithWrappers.js +7 -12
  324. package/dist/utils/text.js +9 -13
  325. package/dist/utils/types.js +1 -2
  326. package/dist/utils/webTokensToMobile.js +4 -9
  327. package/package.json +14 -14
@@ -1,61 +1,45 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./ArtsyKeyboardAvoidingView"), exports);
18
- __exportStar(require("./Autocomplete"), exports);
19
- __exportStar(require("./Avatar"), exports);
20
- __exportStar(require("./BackButton"), exports);
21
- __exportStar(require("./Banner"), exports);
22
- __exportStar(require("./BorderBox"), exports);
23
- __exportStar(require("./Box"), exports);
24
- __exportStar(require("./Button"), exports);
25
- __exportStar(require("./Checkbox"), exports);
26
- __exportStar(require("./ClassTheme"), exports);
27
- __exportStar(require("./Collapse"), exports);
28
- __exportStar(require("./CollapsibleMenuItem"), exports);
29
- __exportStar(require("./Dialog"), exports);
30
- __exportStar(require("./EntityHeader"), exports);
31
- __exportStar(require("./Flex"), exports);
32
- __exportStar(require("./Header"), exports);
33
- __exportStar(require("./Histogram"), exports);
34
- __exportStar(require("./Image"), exports);
35
- __exportStar(require("./Input"), exports);
36
- __exportStar(require("./Join"), exports);
37
- __exportStar(require("./LazyFlatlist"), exports);
38
- __exportStar(require("./LegacyScreen"), exports);
39
- __exportStar(require("./LegacyTabs"), exports);
40
- __exportStar(require("./List"), exports);
41
- __exportStar(require("./MeasuredView"), exports);
42
- __exportStar(require("./MenuItem"), exports);
43
- __exportStar(require("./Message"), exports);
44
- __exportStar(require("./Pill"), exports);
45
- __exportStar(require("./PopIn"), exports);
46
- __exportStar(require("./Popover"), exports);
47
- __exportStar(require("./ProgressBar"), exports);
48
- __exportStar(require("./Radio"), exports);
49
- __exportStar(require("./Screen"), exports);
50
- __exportStar(require("./SearchInput"), exports);
51
- __exportStar(require("./Separator"), exports);
52
- __exportStar(require("./SimpleMessage"), exports);
53
- __exportStar(require("./Skeleton"), exports);
54
- __exportStar(require("./Spacer"), exports);
55
- __exportStar(require("./Spinner"), exports);
56
- __exportStar(require("./Switch"), exports);
57
- __exportStar(require("./Tabs"), exports);
58
- __exportStar(require("./Text"), exports);
59
- __exportStar(require("./ToolTip"), exports);
60
- __exportStar(require("./Touchable"), exports);
61
- __exportStar(require("./VisualClue"), exports);
1
+ export * from "./ArtsyKeyboardAvoidingView";
2
+ export * from "./Autocomplete";
3
+ export * from "./Avatar";
4
+ export * from "./BackButton";
5
+ export * from "./Banner";
6
+ export * from "./BorderBox";
7
+ export * from "./Box";
8
+ export * from "./Button";
9
+ export * from "./Checkbox";
10
+ export * from "./ClassTheme";
11
+ export * from "./Collapse";
12
+ export * from "./CollapsibleMenuItem";
13
+ export * from "./Dialog";
14
+ export * from "./EntityHeader";
15
+ export * from "./Flex";
16
+ export * from "./Header";
17
+ export * from "./Histogram";
18
+ export * from "./Image";
19
+ export * from "./Input";
20
+ export * from "./Join";
21
+ export * from "./LazyFlatlist";
22
+ export * from "./LegacyScreen";
23
+ export * from "./LegacyTabs";
24
+ export * from "./List";
25
+ export * from "./MeasuredView";
26
+ export * from "./MenuItem";
27
+ export * from "./Message";
28
+ export * from "./Pill";
29
+ export * from "./PopIn";
30
+ export * from "./Popover";
31
+ export * from "./ProgressBar";
32
+ export * from "./Radio";
33
+ export * from "./Screen";
34
+ export * from "./SearchInput";
35
+ export * from "./Separator";
36
+ export * from "./SimpleMessage";
37
+ export * from "./Skeleton";
38
+ export * from "./Spacer";
39
+ export * from "./Spinner";
40
+ export * from "./Switch";
41
+ export * from "./Tabs";
42
+ export * from "./Text";
43
+ export * from "./ToolTip";
44
+ export * from "./Touchable";
45
+ export * from "./VisualClue";
package/dist/index.js CHANGED
@@ -1,26 +1,10 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./animation"), exports);
18
- __exportStar(require("./constants"), exports);
19
- __exportStar(require("./elements"), exports);
20
- __exportStar(require("./utils/hooks"), exports);
21
- __exportStar(require("./utils/text"), exports);
22
- __exportStar(require("./svgs"), exports);
23
- __exportStar(require("./svgs/Icon"), exports);
24
- __exportStar(require("./Theme"), exports);
25
- __exportStar(require("./tokens"), exports);
26
- __exportStar(require("./types"), exports);
1
+ export * from "./animation";
2
+ export * from "./constants";
3
+ export * from "./elements";
4
+ export * from "./utils/hooks";
5
+ export * from "./utils/text";
6
+ export * from "./svgs";
7
+ export * from "./svgs/Icon";
8
+ export * from "./Theme";
9
+ export * from "./tokens";
10
+ export * from "./types";
package/dist/setupJest.js CHANGED
@@ -1,13 +1,8 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
1
  // @ts-expect-error
7
2
  global.__TEST__ = true;
8
3
  // @ts-expect-error
9
- const mock_1 = __importDefault(require("react-native-safe-area-context/jest/mock"));
10
- jest.mock("react-native-safe-area-context", () => mock_1.default);
4
+ import mockSafeAreaContext from "react-native-safe-area-context/jest/mock";
5
+ jest.mock("react-native-safe-area-context", () => mockSafeAreaContext);
11
6
  jest.mock("react-native/Libraries/Animated/NativeAnimatedHelper");
12
7
  require("react-native-reanimated/src/reanimated2/jestUtils").setUpTests();
13
8
  // @ts-expect-error
@@ -1,37 +1,29 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.useDarkModeSwitcher = exports.withTheme = void 0;
7
- const jsx_runtime_1 = require("react/jsx-runtime");
8
- const async_storage_1 = __importDefault(require("@react-native-async-storage/async-storage"));
9
- const jotai_1 = require("jotai");
10
- const utils_1 = require("jotai/utils");
11
- const react_1 = require("react");
12
- const react_native_1 = require("react-native");
13
- const react_native_safe_area_context_1 = require("react-native-safe-area-context");
14
- const Theme_1 = require("../Theme");
15
- const Flex_1 = require("../elements/Flex");
16
- const Text_1 = require("../elements/Text");
17
- const hooks_1 = require("../utils/hooks");
18
- const withTheme = (story) => ((0, jsx_runtime_1.jsxs)(Theme_1.Theme, { theme: "v3light", children: [(0, jsx_runtime_1.jsx)(Text_1.Text, { color: "red", children: "aaww" }), story()] }));
19
- exports.withTheme = withTheme;
20
- const atomStorage = (0, utils_1.createJSONStorage)(() => async_storage_1.default);
21
- const atomWithAsyncStorage = (key, initialValue) => (0, utils_1.atomWithStorage)(key, initialValue, {
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import AsyncStorage from "@react-native-async-storage/async-storage";
3
+ import { useAtom } from "jotai";
4
+ import { atomWithStorage, createJSONStorage } from "jotai/utils";
5
+ import { useEffect, useState } from "react";
6
+ import { Appearance } from "react-native";
7
+ import { SafeAreaProvider } from "react-native-safe-area-context";
8
+ import { Theme } from "../Theme";
9
+ import { Flex } from "../elements/Flex";
10
+ import { LinkText, Text } from "../elements/Text";
11
+ import { ScreenDimensionsProvider } from "../utils/hooks";
12
+ export const withTheme = (story) => (_jsxs(Theme, { theme: "v3light", children: [_jsx(Text, { color: "red", children: "aaww" }), story()] }));
13
+ const atomStorage = createJSONStorage(() => AsyncStorage);
14
+ const atomWithAsyncStorage = (key, initialValue) => atomWithStorage(key, initialValue, {
22
15
  ...atomStorage,
23
16
  delayInit: true,
24
17
  });
25
18
  const modeAtom = atomWithAsyncStorage("dark-mode-mode", "system");
26
- const useDarkModeSwitcher = (story) => {
27
- const [mode, setMode] = (0, jotai_1.useAtom)(modeAtom);
28
- const [systemMode, setSystemMode] = (0, react_1.useState)(react_native_1.Appearance.getColorScheme() ?? "light");
29
- (0, react_1.useEffect)(() => {
30
- const subscription = react_native_1.Appearance.addChangeListener(({ colorScheme }) => void setSystemMode(colorScheme ?? "light"));
19
+ export const useDarkModeSwitcher = (story) => {
20
+ const [mode, setMode] = useAtom(modeAtom);
21
+ const [systemMode, setSystemMode] = useState(Appearance.getColorScheme() ?? "light");
22
+ useEffect(() => {
23
+ const subscription = Appearance.addChangeListener(({ colorScheme }) => void setSystemMode(colorScheme ?? "light"));
31
24
  return () => subscription.remove();
32
25
  }, []);
33
26
  const isDarkMode = mode === "dark" || (mode === "system" && systemMode === "dark");
34
27
  const theme = isDarkMode ? "v3dark" : "v3light";
35
- return ((0, jsx_runtime_1.jsx)(hooks_1.ScreenDimensionsProvider, { children: (0, jsx_runtime_1.jsx)(react_native_safe_area_context_1.SafeAreaProvider, { children: (0, jsx_runtime_1.jsx)(Theme_1.Theme, { theme: theme, children: (0, jsx_runtime_1.jsxs)(Flex_1.Flex, { flex: 1, backgroundColor: "background", children: [(0, jsx_runtime_1.jsxs)(Flex_1.Flex, { flexDirection: "row", justifyContent: "space-around", children: [(0, jsx_runtime_1.jsxs)(Text_1.Text, { color: "orange", children: ["Dark mode: ", mode, " ", mode === "system" && "(" + systemMode + ")"] }), (0, jsx_runtime_1.jsx)(Text_1.LinkText, { color: "orange", onPress: () => setMode("light"), children: "light" }), (0, jsx_runtime_1.jsx)(Text_1.LinkText, { color: "orange", onPress: () => setMode("dark"), children: "dark" }), (0, jsx_runtime_1.jsx)(Text_1.LinkText, { color: "orange", onPress: () => setMode("system"), children: "system" })] }), story()] }) }) }) }));
28
+ return (_jsx(ScreenDimensionsProvider, { children: _jsx(SafeAreaProvider, { children: _jsx(Theme, { theme: theme, children: _jsxs(Flex, { flex: 1, backgroundColor: "background", children: [_jsxs(Flex, { flexDirection: "row", justifyContent: "space-around", children: [_jsxs(Text, { color: "orange", children: ["Dark mode: ", mode, " ", mode === "system" && "(" + systemMode + ")"] }), _jsx(LinkText, { color: "orange", onPress: () => setMode("light"), children: "light" }), _jsx(LinkText, { color: "orange", onPress: () => setMode("dark"), children: "dark" }), _jsx(LinkText, { color: "orange", onPress: () => setMode("system"), children: "system" })] }), story()] }) }) }) }));
36
29
  };
37
- exports.useDarkModeSwitcher = useDarkModeSwitcher;
@@ -1,10 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Row = exports.List = exports.DataList = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const react_native_1 = require("react-native");
6
- const elements_1 = require("../elements");
7
- const DataList = ({ data, keyExtractor, renderItem, contentContainerStyle, }) => ((0, jsx_runtime_1.jsx)(react_native_1.FlatList, { data: data, keyExtractor: keyExtractor ?? ((item) => `${item}`), renderItem: renderItem, ItemSeparatorComponent: () => (0, jsx_runtime_1.jsx)(elements_1.Spacer, { y: 4 }), contentContainerStyle: [
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { FlatList } from "react-native";
3
+ import { Flex, Spacer } from "../elements";
4
+ export const DataList = ({ data, keyExtractor, renderItem, contentContainerStyle, }) => (_jsx(FlatList, { data: data, keyExtractor: keyExtractor ?? ((item) => `${item}`), renderItem: renderItem, ItemSeparatorComponent: () => _jsx(Spacer, { y: 4 }), contentContainerStyle: [
8
5
  {
9
6
  flexGrow: 1,
10
7
  alignItems: "center",
@@ -13,8 +10,7 @@ const DataList = ({ data, keyExtractor, renderItem, contentContainerStyle, }) =>
13
10
  },
14
11
  contentContainerStyle,
15
12
  ] }));
16
- exports.DataList = DataList;
17
- const List = ({ children, contentContainerStyle, style, horizontal, }) => ((0, jsx_runtime_1.jsx)(react_native_1.FlatList, { horizontal: horizontal, data: Array.isArray(children) ? children : [children], keyExtractor: (_, index) => `${index}`, renderItem: ({ item: child }) => child, ItemSeparatorComponent: () => ((0, jsx_runtime_1.jsx)(elements_1.Spacer, { x: horizontal ? 2 : undefined, y: horizontal ? undefined : 2 })), contentContainerStyle: [
13
+ export const List = ({ children, contentContainerStyle, style, horizontal, }) => (_jsx(FlatList, { horizontal: horizontal, data: Array.isArray(children) ? children : [children], keyExtractor: (_, index) => `${index}`, renderItem: ({ item: child }) => child, ItemSeparatorComponent: () => (_jsx(Spacer, { x: horizontal ? 2 : undefined, y: horizontal ? undefined : 2 })), contentContainerStyle: [
18
14
  {
19
15
  flexGrow: 1,
20
16
  alignItems: "center",
@@ -23,6 +19,4 @@ const List = ({ children, contentContainerStyle, style, horizontal, }) => ((0, j
23
19
  },
24
20
  contentContainerStyle,
25
21
  ], style: style }));
26
- exports.List = List;
27
- const Row = ({ children }) => ((0, jsx_runtime_1.jsx)(elements_1.Flex, { width: "100%", flexDirection: "row", justifyContent: "space-evenly", alignItems: "center", children: children }));
28
- exports.Row = Row;
22
+ export const Row = ({ children }) => (_jsx(Flex, { width: "100%", flexDirection: "row", justifyContent: "space-evenly", alignItems: "center", children: children }));
@@ -1,11 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AddCircleFillIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
7
- const AddCircleFillIcon = ({ fill, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 18 18", children: (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1zm.551 7.449H13V9.55H9.551V13H8.45V9.551H5V8.45h3.449V5H9.55v3.449z", fill: color(fill), fillRule: "nonzero" }) }));
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const AddCircleFillIcon = ({ fill, ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 18 18", children: _jsx(Path, { d: "M9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1zm.551 7.449H13V9.55H9.551V13H8.45V9.551H5V8.45h3.449V5H9.55v3.449z", fill: color(fill), fillRule: "nonzero" }) }));
10
7
  };
11
- exports.AddCircleFillIcon = AddCircleFillIcon;
@@ -1,11 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AddCircleIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
7
- const AddCircleIcon = ({ fill, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 18 18", children: (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1zm0 15.111A7.111 7.111 0 1 1 9 1.89 7.111 7.111 0 0 1 9 16.11zm.551-7.662H13V9.55H9.551V13H8.45V9.551H5V8.45h3.449V5H9.55v3.449z", fill: color(fill), fillRule: "nonzero" }) }));
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const AddCircleIcon = ({ fill, ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 18 18", children: _jsx(Path, { d: "M9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1zm0 15.111A7.111 7.111 0 1 1 9 1.89 7.111 7.111 0 0 1 9 16.11zm.551-7.662H13V9.55H9.551V13H8.45V9.551H5V8.45h3.449V5H9.55v3.449z", fill: color(fill), fillRule: "nonzero" }) }));
10
7
  };
11
- exports.AddCircleIcon = AddCircleIcon;
@@ -1,11 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AddIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
7
- const AddIcon = ({ fill, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 18 18", children: (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M15 9.5H9.514V15H8.476V9.5H3V8.48h5.476V3h1.038v5.48H15z", fill: color(fill), fillRule: "evenodd" }) }));
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const AddIcon = ({ fill, ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 18 18", children: _jsx(Path, { d: "M15 9.5H9.514V15H8.476V9.5H3V8.48h5.476V3h1.038v5.48H15z", fill: color(fill), fillRule: "evenodd" }) }));
10
7
  };
11
- exports.AddIcon = AddIcon;
@@ -1,11 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AlertCircleFillIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
7
- const AlertCircleFillIcon = ({ fill, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 18 18", children: (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M17 9C17 4.58172 13.4183 1 9 1C4.58172 1 1 4.58172 1 9C1 13.4183 4.58172 17 9 17C13.4183 17 17 13.4183 17 9ZM8.42225 5.13333H9.5778L9.39114 10.7778H8.60892L8.42225 5.13333ZM8.42225 11.6578H9.56892V12.8667H8.44003L8.42225 11.6578Z", fill: color(fill), fillRule: "evenodd", clipRule: "evenodd" }) }));
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const AlertCircleFillIcon = ({ fill, ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 18 18", children: _jsx(Path, { d: "M17 9C17 4.58172 13.4183 1 9 1C4.58172 1 1 4.58172 1 9C1 13.4183 4.58172 17 9 17C13.4183 17 17 13.4183 17 9ZM8.42225 5.13333H9.5778L9.39114 10.7778H8.60892L8.42225 5.13333ZM8.42225 11.6578H9.56892V12.8667H8.44003L8.42225 11.6578Z", fill: color(fill), fillRule: "evenodd", clipRule: "evenodd" }) }));
10
7
  };
11
- exports.AlertCircleFillIcon = AlertCircleFillIcon;
@@ -1,11 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AlertIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
7
- const AlertIcon = ({ fill, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 18 18", children: (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M9 1.889A7.111 7.111 0 1 1 9 16.11 7.111 7.111 0 0 1 9 1.89zM9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1zm-.578 4.133h1.156l-.187 5.645H8.61l-.187-5.645zm0 6.525H9.57v1.209H8.44l-.018-1.21z", fill: color(fill), fillRule: "nonzero" }) }));
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const AlertIcon = ({ fill, ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 18 18", children: _jsx(Path, { d: "M9 1.889A7.111 7.111 0 1 1 9 16.11 7.111 7.111 0 0 1 9 1.89zM9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1zm-.578 4.133h1.156l-.187 5.645H8.61l-.187-5.645zm0 6.525H9.57v1.209H8.44l-.018-1.21z", fill: color(fill), fillRule: "nonzero" }) }));
10
7
  };
11
- exports.AlertIcon = AlertIcon;
@@ -1,14 +1,9 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ArrowDownCircleFillIcon = exports.ArrowUpCircleFillIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
7
4
  const FilledArrowCircle = ({ fill, rotate, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, style: rotate !== undefined ? { transform: [{ rotate }] } : {}, viewBox: "0 0 18 18", children: (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M16 9.5C16 13.366 12.866 16.5 9 16.5C5.13401 16.5 2 13.366 2 9.5C2 5.63401 5.13401 2.5 9 2.5C12.866 2.5 16 5.63401 16 9.5Z M9 6.5002L6 11.7002L12 11.7002L9 6.5002Z", fill: color(fill) }) }));
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, style: rotate !== undefined ? { transform: [{ rotate }] } : {}, viewBox: "0 0 18 18", children: _jsx(Path, { d: "M16 9.5C16 13.366 12.866 16.5 9 16.5C5.13401 16.5 2 13.366 2 9.5C2 5.63401 5.13401 2.5 9 2.5C12.866 2.5 16 5.63401 16 9.5Z M9 6.5002L6 11.7002L12 11.7002L9 6.5002Z", fill: color(fill) }) }));
10
7
  };
11
- const ArrowUpCircleFillIcon = (props) => (0, jsx_runtime_1.jsx)(FilledArrowCircle, { ...props });
12
- exports.ArrowUpCircleFillIcon = ArrowUpCircleFillIcon;
13
- const ArrowDownCircleFillIcon = (props) => ((0, jsx_runtime_1.jsx)(FilledArrowCircle, { rotate: "180deg", ...props }));
14
- exports.ArrowDownCircleFillIcon = ArrowDownCircleFillIcon;
8
+ export const ArrowUpCircleFillIcon = (props) => _jsx(FilledArrowCircle, { ...props });
9
+ export const ArrowDownCircleFillIcon = (props) => (_jsx(FilledArrowCircle, { rotate: "180deg", ...props }));
@@ -1,11 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ArrowDownCircleIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
7
- const ArrowDownCircleIcon = ({ fill, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 18 18", children: (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M9 1.889A7.111 7.111 0 1 1 9 16.11 7.111 7.111 0 0 1 9 1.89zM9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1zm4.302 6.622l-.746-.79L9 10.431 5.489 6.875l-.791.782L9 12.102l4.302-4.48z", fill: color(fill), fillRule: "nonzero" }) }));
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const ArrowDownCircleIcon = ({ fill, ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 18 18", children: _jsx(Path, { d: "M9 1.889A7.111 7.111 0 1 1 9 16.11 7.111 7.111 0 0 1 9 1.89zM9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1zm4.302 6.622l-.746-.79L9 10.431 5.489 6.875l-.791.782L9 12.102l4.302-4.48z", fill: color(fill), fillRule: "nonzero" }) }));
10
7
  };
11
- exports.ArrowDownCircleIcon = ArrowDownCircleIcon;
@@ -1,11 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ArrowDownIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
7
- const ArrowDownIcon = ({ fill, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 18 18", children: (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M9 12.88L2.06 5.94l.88-.88L9 11.12l6.06-6.06.88.88z", fill: color(fill), fillRule: "evenodd" }) }));
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const ArrowDownIcon = ({ fill, ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 18 18", children: _jsx(Path, { d: "M9 12.88L2.06 5.94l.88-.88L9 11.12l6.06-6.06.88.88z", fill: color(fill), fillRule: "evenodd" }) }));
10
7
  };
11
- exports.ArrowDownIcon = ArrowDownIcon;
@@ -1,11 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ArrowLeftCircleIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
7
- const ArrowLeftCircleIcon = ({ fill, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 18 18", children: (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M9 1.889A7.111 7.111 0 1 1 9 16.11 7.111 7.111 0 0 1 9 1.89zM9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1zm2.169 11.556L7.569 9l3.6-3.511-.782-.791L5.987 9l4.444 4.302.738-.746z", fill: color(fill), fillRule: "nonzero" }) }));
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const ArrowLeftCircleIcon = ({ fill, ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 18 18", children: _jsx(Path, { d: "M9 1.889A7.111 7.111 0 1 1 9 16.11 7.111 7.111 0 0 1 9 1.89zM9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1zm2.169 11.556L7.569 9l3.6-3.511-.782-.791L5.987 9l4.444 4.302.738-.746z", fill: color(fill), fillRule: "nonzero" }) }));
10
7
  };
11
- exports.ArrowLeftCircleIcon = ArrowLeftCircleIcon;
@@ -1,11 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ArrowLeftIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
7
- const ArrowLeftIcon = ({ fill, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 18 18", children: (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M12.06 15.94L5.12 9l6.94-6.94.88.88L6.88 9l6.06 6.06z", fill: color(fill), fillRule: "evenodd" }) }));
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const ArrowLeftIcon = ({ fill, ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 18 18", children: _jsx(Path, { d: "M12.06 15.94L5.12 9l6.94-6.94.88.88L6.88 9l6.06 6.06z", fill: color(fill), fillRule: "evenodd" }) }));
10
7
  };
11
- exports.ArrowLeftIcon = ArrowLeftIcon;
@@ -1,11 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ArrowRightCircleIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
7
- const ArrowRightCircleIcon = ({ fill, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 18 18", children: (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M9 1.889A7.111 7.111 0 1 1 9 16.11 7.111 7.111 0 0 1 9 1.89zM9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1zm3.013 8l-4.4-4.302-.782.79 3.6 3.556-3.6 3.512.782.79L12.013 9z", fill: color(fill), fillRule: "nonzero" }) }));
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const ArrowRightCircleIcon = ({ fill, ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 18 18", children: _jsx(Path, { d: "M9 1.889A7.111 7.111 0 1 1 9 16.11 7.111 7.111 0 0 1 9 1.89zM9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1zm3.013 8l-4.4-4.302-.782.79 3.6 3.556-3.6 3.512.782.79L12.013 9z", fill: color(fill), fillRule: "nonzero" }) }));
10
7
  };
11
- exports.ArrowRightCircleIcon = ArrowRightCircleIcon;
@@ -1,11 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ArrowRightIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
7
- const ArrowRightIcon = ({ fill, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 18 18", children: (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M5.94 15.94l-.88-.88L11.12 9 5.06 2.94l.88-.88L12.88 9z", fill: color(fill), fillRule: "evenodd" }) }));
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const ArrowRightIcon = ({ fill, ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 18 18", children: _jsx(Path, { d: "M5.94 15.94l-.88-.88L11.12 9 5.06 2.94l.88-.88L12.88 9z", fill: color(fill), fillRule: "evenodd" }) }));
10
7
  };
11
- exports.ArrowRightIcon = ArrowRightIcon;
@@ -1,11 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ArrowUpCircleIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
7
- const ArrowUpCircleIcon = ({ fill, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 18 18", children: (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M9 1.889A7.111 7.111 0 1 1 9 16.11 7.111 7.111 0 0 1 9 1.89zM9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1zm4.302 9.387L9 5.987 4.698 10.43l.79.782 3.556-3.555 3.512 3.51.746-.781z", fill: color(fill), fillRule: "nonzero" }) }));
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const ArrowUpCircleIcon = ({ fill, ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 18 18", children: _jsx(Path, { d: "M9 1.889A7.111 7.111 0 1 1 9 16.11 7.111 7.111 0 0 1 9 1.89zM9 1a8 8 0 1 0 0 16A8 8 0 0 0 9 1zm4.302 9.387L9 5.987 4.698 10.43l.79.782 3.556-3.555 3.512 3.51.746-.781z", fill: color(fill), fillRule: "nonzero" }) }));
10
7
  };
11
- exports.ArrowUpCircleIcon = ArrowUpCircleIcon;
@@ -1,11 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ArrowUpIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
7
- const ArrowUpIcon = ({ fill, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 18 18", children: (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M15.06 12.94L9 6.88l-6.06 6.06-.88-.88L9 5.12l6.94 6.94z", fill: color(fill), fillRule: "evenodd" }) }));
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const ArrowUpIcon = ({ fill, ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 18 18", children: _jsx(Path, { d: "M15.06 12.94L9 6.88l-6.06 6.06-.88-.88L9 5.12l6.94 6.94z", fill: color(fill), fillRule: "evenodd" }) }));
10
7
  };
11
- exports.ArrowUpIcon = ArrowUpIcon;
@@ -1,11 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ArtsyLogoBlackIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const hooks_1 = require("../utils/hooks");
7
- const ArtsyLogoBlackIcon = ({ scale = 1, fill, ...restProps }) => {
8
- const color = (0, hooks_1.useColor)();
9
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 94 32", width: `${scale * 94}px`, height: `${scale * 32}px`, children: (0, jsx_runtime_1.jsxs)(Icon_1.G, { fill: color(fill), fillRule: "evenodd", children: [(0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M2.355 2.173h89.323v27.613H53.872v-4.55h-2.119v4.55H2.355V2.173zM.162 31.953h93.71V.006H.161v31.945z" }), (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M19.168 10.297h-2.402L12.59 20.92h2.401l1.097-2.946h3.775l1.081 2.946h2.402l-4.177-10.623zm-2.435 5.732l1.233-3.33 1.22 3.33h-2.453zM40.024 10.297v2.11h3.761v8.513h2.262v-8.513h3.776v-2.11h-9.799M78.516 10.297l-2.719 4.53-2.702-4.53h-2.63l4.21 6.723v3.9h2.261v-3.9l4.21-6.723h-2.63M65.963 15.326c-.7-.505-1.658-.737-2.503-.942-.176-.043-.347-.084-.513-.127l-.105-.027c-.689-.17-1.632-.405-1.632-1.219 0-.869 1.025-1.1 1.63-1.1.686 0 1.548.202 1.758 1.172l.007.033h2.13v-.042c-.072-1.96-1.464-3.085-3.816-3.085-1.752 0-3.797.808-3.797 3.086 0 2.37 2.134 2.878 4.017 3.326.173.042.343.082.509.124.96.247 1.446.688 1.446 1.308 0 1.336-1.77 1.403-2.126 1.403-1.245 0-1.921-.459-2.128-1.443l-.006-.032H58.67l.001.041c.017.843.12 1.356.668 1.993 1.04 1.198 2.688 1.377 3.58 1.377 2.054 0 4.264-1.054 4.264-3.371 0-.984-.468-1.933-1.221-2.475M34.967 16.402c.82-.592 1.331-1.64 1.331-2.736 0-1.184-.617-2.283-1.609-2.867-.84-.502-1.691-.502-2.514-.502h-4.846V20.92h2.278v-5.251l4.225 5.25h2.758l-3.217-3.897c.576-.098 1.055-.231 1.594-.62m-5.36-1.214v-2.89h2.558c.508 0 .96.022 1.322.281.344.248.548.684.548 1.165 0 .958-.692 1.444-2.056 1.444h-2.372" })] }) }));
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { G, Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const ArtsyLogoBlackIcon = ({ scale = 1, fill, ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 94 32", width: `${scale * 94}px`, height: `${scale * 32}px`, children: _jsxs(G, { fill: color(fill), fillRule: "evenodd", children: [_jsx(Path, { d: "M2.355 2.173h89.323v27.613H53.872v-4.55h-2.119v4.55H2.355V2.173zM.162 31.953h93.71V.006H.161v31.945z" }), _jsx(Path, { d: "M19.168 10.297h-2.402L12.59 20.92h2.401l1.097-2.946h3.775l1.081 2.946h2.402l-4.177-10.623zm-2.435 5.732l1.233-3.33 1.22 3.33h-2.453zM40.024 10.297v2.11h3.761v8.513h2.262v-8.513h3.776v-2.11h-9.799M78.516 10.297l-2.719 4.53-2.702-4.53h-2.63l4.21 6.723v3.9h2.261v-3.9l4.21-6.723h-2.63M65.963 15.326c-.7-.505-1.658-.737-2.503-.942-.176-.043-.347-.084-.513-.127l-.105-.027c-.689-.17-1.632-.405-1.632-1.219 0-.869 1.025-1.1 1.63-1.1.686 0 1.548.202 1.758 1.172l.007.033h2.13v-.042c-.072-1.96-1.464-3.085-3.816-3.085-1.752 0-3.797.808-3.797 3.086 0 2.37 2.134 2.878 4.017 3.326.173.042.343.082.509.124.96.247 1.446.688 1.446 1.308 0 1.336-1.77 1.403-2.126 1.403-1.245 0-1.921-.459-2.128-1.443l-.006-.032H58.67l.001.041c.017.843.12 1.356.668 1.993 1.04 1.198 2.688 1.377 3.58 1.377 2.054 0 4.264-1.054 4.264-3.371 0-.984-.468-1.933-1.221-2.475M34.967 16.402c.82-.592 1.331-1.64 1.331-2.736 0-1.184-.617-2.283-1.609-2.867-.84-.502-1.691-.502-2.514-.502h-4.846V20.92h2.278v-5.251l4.225 5.25h2.758l-3.217-3.897c.576-.098 1.055-.231 1.594-.62m-5.36-1.214v-2.89h2.558c.508 0 .96.022 1.322.281.344.248.548.684.548 1.165 0 .958-.692 1.444-2.056 1.444h-2.372" })] }) }));
10
7
  };
11
- exports.ArtsyLogoBlackIcon = ArtsyLogoBlackIcon;
@@ -1,9 +1,5 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ArtsyLogoWhiteIcon = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const Icon_1 = require("./Icon");
6
- const ArtsyLogoWhiteIcon = ({ fill, ...restProps }) => {
7
- return ((0, jsx_runtime_1.jsx)(Icon_1.Icon, { ...restProps, viewBox: "0 0 94 32", children: (0, jsx_runtime_1.jsxs)(Icon_1.G, { fill: "none", fillRule: "evenodd", children: [(0, jsx_runtime_1.jsx)(Icon_1.Path, { fill: "none", d: "M0 0h94v32H0z" }), (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M2.355 2.173h89.323v27.613H53.872v-4.55h-2.119v4.55H2.355V2.173zM.162 31.953h93.71V.006H.161v31.945z", fill: "#FFF" }), (0, jsx_runtime_1.jsx)(Icon_1.Path, { d: "M19.168 10.297h-2.402L12.59 20.92h2.401l1.097-2.946h3.775l1.081 2.946h2.402l-4.177-10.623zm-2.435 5.732l1.233-3.33 1.22 3.33h-2.453zM40.024 10.297v2.11h3.761v8.513h2.262v-8.513h3.776v-2.11h-9.799M78.516 10.297l-2.719 4.53-2.702-4.53h-2.63l4.21 6.723v3.9h2.261v-3.9l4.21-6.723h-2.63M65.963 15.326c-.7-.505-1.658-.737-2.503-.942-.176-.043-.347-.084-.513-.127l-.105-.027c-.689-.17-1.632-.405-1.632-1.219 0-.869 1.025-1.1 1.63-1.1.686 0 1.548.202 1.758 1.172l.007.033h2.13v-.042c-.072-1.96-1.464-3.085-3.816-3.085-1.752 0-3.797.808-3.797 3.086 0 2.37 2.134 2.878 4.017 3.326.173.042.343.082.509.124.96.247 1.446.688 1.446 1.308 0 1.336-1.77 1.403-2.126 1.403-1.245 0-1.921-.459-2.128-1.443l-.006-.032H58.67l.001.041c.017.843.12 1.356.668 1.993 1.04 1.198 2.688 1.377 3.58 1.377 2.054 0 4.264-1.054 4.264-3.371 0-.984-.468-1.933-1.221-2.475M34.967 16.402c.82-.592 1.331-1.64 1.331-2.736 0-1.184-.617-2.283-1.609-2.867-.84-.502-1.691-.502-2.514-.502h-4.846V20.92h2.278v-5.251l4.225 5.25h2.758l-3.217-3.897c.576-.098 1.055-.231 1.594-.62m-5.36-1.214v-2.89h2.558c.508 0 .96.022 1.322.281.344.248.548.684.548 1.165 0 .958-.692 1.444-2.056 1.444h-2.372", fill: "#FFF" })] }) }));
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { G, Icon, Path } from "./Icon";
3
+ export const ArtsyLogoWhiteIcon = ({ fill, ...restProps }) => {
4
+ return (_jsx(Icon, { ...restProps, viewBox: "0 0 94 32", children: _jsxs(G, { fill: "none", fillRule: "evenodd", children: [_jsx(Path, { fill: "none", d: "M0 0h94v32H0z" }), _jsx(Path, { d: "M2.355 2.173h89.323v27.613H53.872v-4.55h-2.119v4.55H2.355V2.173zM.162 31.953h93.71V.006H.161v31.945z", fill: "#FFF" }), _jsx(Path, { d: "M19.168 10.297h-2.402L12.59 20.92h2.401l1.097-2.946h3.775l1.081 2.946h2.402l-4.177-10.623zm-2.435 5.732l1.233-3.33 1.22 3.33h-2.453zM40.024 10.297v2.11h3.761v8.513h2.262v-8.513h3.776v-2.11h-9.799M78.516 10.297l-2.719 4.53-2.702-4.53h-2.63l4.21 6.723v3.9h2.261v-3.9l4.21-6.723h-2.63M65.963 15.326c-.7-.505-1.658-.737-2.503-.942-.176-.043-.347-.084-.513-.127l-.105-.027c-.689-.17-1.632-.405-1.632-1.219 0-.869 1.025-1.1 1.63-1.1.686 0 1.548.202 1.758 1.172l.007.033h2.13v-.042c-.072-1.96-1.464-3.085-3.816-3.085-1.752 0-3.797.808-3.797 3.086 0 2.37 2.134 2.878 4.017 3.326.173.042.343.082.509.124.96.247 1.446.688 1.446 1.308 0 1.336-1.77 1.403-2.126 1.403-1.245 0-1.921-.459-2.128-1.443l-.006-.032H58.67l.001.041c.017.843.12 1.356.668 1.993 1.04 1.198 2.688 1.377 3.58 1.377 2.054 0 4.264-1.054 4.264-3.371 0-.984-.468-1.933-1.221-2.475M34.967 16.402c.82-.592 1.331-1.64 1.331-2.736 0-1.184-.617-2.283-1.609-2.867-.84-.502-1.691-.502-2.514-.502h-4.846V20.92h2.278v-5.251l4.225 5.25h2.758l-3.217-3.897c.576-.098 1.055-.231 1.594-.62m-5.36-1.214v-2.89h2.558c.508 0 .96.022 1.322.281.344.248.548.684.548 1.165 0 .958-.692 1.444-2.056 1.444h-2.372", fill: "#FFF" })] }) }));
8
5
  };
9
- exports.ArtsyLogoWhiteIcon = ArtsyLogoWhiteIcon;