@artsy/palette-mobile 11.0.16 → 11.0.17

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/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ # v11.0.17 (Tue Apr 25 2023)
2
+
3
+ :tada: This release contains work from a new contributor! :tada:
4
+
5
+ Thank you, Dima Tretyak ([@dimatretyak](https://github.com/dimatretyak)), for all your work!
6
+
7
+ #### 🐛 Bug Fix
8
+
9
+ - feat: add `EmptyCheckCircleIcon` [#90](https://github.com/artsy/palette-mobile/pull/90) ([@dimatretyak](https://github.com/dimatretyak))
10
+
11
+ #### Authors: 1
12
+
13
+ - Dima Tretyak ([@dimatretyak](https://github.com/dimatretyak))
14
+
15
+ ---
16
+
1
17
  # v11.0.16 (Tue Apr 18 2023)
2
18
 
3
19
  #### 🐛 Bug Fix
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from "./Icon";
3
+ export declare const EmptyCheckCircleIcon: ({ fill, ...restProps }: IconProps) => JSX.Element;
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EmptyCheckCircleIcon = 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 EmptyCheckCircleIcon = ({ 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: "M1.0006 8.99993C1.0006 4.58165 4.58232 0.999931 9.00062 0.999931C11.1223 0.999931 13.1572 1.84278 14.6575 3.34307C16.1578 4.84337 17.0006 6.8782 17.0006 8.99993C17.0006 13.4182 13.4189 16.9999 9.00062 16.9999C4.58232 16.9999 1.0006 13.4182 1.0006 8.99993ZM16.1112 9.00007C16.1112 5.07273 12.9275 1.88898 9.00006 1.88898C5.07272 1.88898 1.88897 5.07273 1.88897 9.00007C1.88897 12.9275 5.07272 16.1112 9.00006 16.1112C12.9275 16.1112 16.1112 12.9275 16.1112 9.00007Z", fill: color(fill), fillRule: "evenodd", clipRule: "evenodd" }) }));
10
+ };
11
+ exports.EmptyCheckCircleIcon = EmptyCheckCircleIcon;
@@ -40,6 +40,7 @@ export * from "./DecreaseIcon";
40
40
  export * from "./DocumentIcon";
41
41
  export * from "./DownloadIcon";
42
42
  export * from "./EditIcon";
43
+ export * from "./EmptyCheckCircleIcon";
43
44
  export * from "./EnterIcon";
44
45
  export * from "./EnvelopeIcon";
45
46
  export * from "./EstablishedIcon";
@@ -56,6 +56,7 @@ __exportStar(require("./DecreaseIcon"), exports);
56
56
  __exportStar(require("./DocumentIcon"), exports);
57
57
  __exportStar(require("./DownloadIcon"), exports);
58
58
  __exportStar(require("./EditIcon"), exports);
59
+ __exportStar(require("./EmptyCheckCircleIcon"), exports);
59
60
  __exportStar(require("./EnterIcon"), exports);
60
61
  __exportStar(require("./EnvelopeIcon"), exports);
61
62
  __exportStar(require("./EstablishedIcon"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/palette-mobile",
3
- "version": "11.0.16",
3
+ "version": "11.0.17",
4
4
  "description": "Artsy's design system for React Native",
5
5
  "scripts": {
6
6
  "android": "react-native run-android",