@artsy/palette-mobile 13.1.25 → 13.1.26

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.
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from "./Icon";
3
+ export declare const HideIcon: ({ fill, ...restProps }: IconProps) => JSX.Element;
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HideIcon = 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 HideIcon = ({ 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: "M16.7 10c.4-.5.4-1.2.1-1.8-2-3.3-4.6-4.9-7.8-4.9-1.5 0-2.8.4-4 1L3.6 2.9l-.7.7 1.3 1.3c-1.1.8-2.1 1.9-3 3.3-.3.5-.3 1.2.1 1.8C3.4 13.1 6 14.7 9 14.7c1.4 0 2.7-.4 3.9-1.1l1.5 1.5.7-.7-1.3-1.3c1.1-.8 2-1.8 2.9-3.1zM9 13.6c-2.6 0-4.8-1.4-6.7-4.2-.1-.2-.1-.4 0-.6C3 7.4 4 6.4 5 5.7l1.7 1.7c-.4.4-.6 1-.6 1.6 0 1.6 1.3 2.9 2.9 2.9.6 0 1.2-.2 1.6-.5l1.5 1.5c-1 .4-2 .7-3.1.7zm1.5-3.8L8.2 7.5c.2-.1.5-.2.8-.2.9 0 1.7.8 1.7 1.7 0 .3-.1.6-.2.8zm-.7.7c-.2.1-.5.2-.8.2-.9 0-1.7-.8-1.7-1.7 0-.3.1-.6.2-.8l2.3 2.3zm3.2 1.8-1.6-1.6c.3-.5.5-1 .5-1.6 0-1.6-1.3-2.9-2.9-2.9-.6 0-1.2.2-1.6.5L5.9 5.2c1-.5 2-.7 3.1-.7 2.8 0 5 1.4 6.8 4.3.1.2.1.4 0 .6-.9 1.2-1.8 2.2-2.8 2.9z", fill: color(fill), fillRule: "evenodd" }) }));
10
+ };
11
+ exports.HideIcon = HideIcon;
@@ -58,6 +58,7 @@ export * from "./GridIcon";
58
58
  export * from "./GuaranteeIcon";
59
59
  export * from "./HeartFillIcon";
60
60
  export * from "./HeartIcon";
61
+ export * from "./HideIcon";
61
62
  export * from "./HomeIcon";
62
63
  export * from "./ImageIcon";
63
64
  export * from "./ImageSetIcon";
@@ -74,6 +74,7 @@ __exportStar(require("./GridIcon"), exports);
74
74
  __exportStar(require("./GuaranteeIcon"), exports);
75
75
  __exportStar(require("./HeartFillIcon"), exports);
76
76
  __exportStar(require("./HeartIcon"), exports);
77
+ __exportStar(require("./HideIcon"), exports);
77
78
  __exportStar(require("./HomeIcon"), exports);
78
79
  __exportStar(require("./ImageIcon"), exports);
79
80
  __exportStar(require("./ImageSetIcon"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/palette-mobile",
3
- "version": "13.1.25",
3
+ "version": "13.1.26",
4
4
  "description": "Artsy's design system for React Native",
5
5
  "scripts": {
6
6
  "android": "RCT_METRO_PORT=8082 react-native run-android --port 8082",