@openfin/ui-library 0.1.24 → 0.1.25-alpha.1627678112

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,6 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '@modulz/radix-icons/dist/types';
3
+ /**
4
+ * Minimize Icon
5
+ */
6
+ export declare const MinimizeIcon: ({ color, ...props }: IconProps) => JSX.Element;
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ var __rest = (this && this.__rest) || function (s, e) {
3
+ var t = {};
4
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
5
+ t[p] = s[p];
6
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
7
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
8
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
9
+ t[p[i]] = s[p[i]];
10
+ }
11
+ return t;
12
+ };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.MinimizeIcon = void 0;
15
+ const jsx_runtime_1 = require("react/jsx-runtime");
16
+ /**
17
+ * Minimize Icon
18
+ */
19
+ const MinimizeIcon = (_a) => {
20
+ var { color = 'currentColor' } = _a, props = __rest(_a, ["color"]);
21
+ return (jsx_runtime_1.jsx("svg", Object.assign({ width: "15", height: "15", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: jsx_runtime_1.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.16602 12C2.16602 11.7239 2.38987 11.5 2.66602 11.5H13.3327C13.6088 11.5 13.8327 11.7239 13.8327 12C13.8327 12.2761 13.6088 12.5 13.3327 12.5H2.66602C2.38987 12.5 2.16602 12.2761 2.16602 12Z", fill: color }, void 0) }), void 0));
22
+ };
23
+ exports.MinimizeIcon = MinimizeIcon;
@@ -2,3 +2,4 @@ export * from './OpenFinIcon';
2
2
  export * from './BellIcon';
3
3
  export * from './WorkspaceIcon';
4
4
  export * from './LockedClosedFilledIcon';
5
+ export * from './MinimizeIcon';
@@ -14,3 +14,4 @@ __exportStar(require("./OpenFinIcon"), exports);
14
14
  __exportStar(require("./BellIcon"), exports);
15
15
  __exportStar(require("./WorkspaceIcon"), exports);
16
16
  __exportStar(require("./LockedClosedFilledIcon"), exports);
17
+ __exportStar(require("./MinimizeIcon"), exports);
@@ -208,6 +208,7 @@ export declare const IconSet: {
208
208
  readonly BellIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
209
209
  readonly WorkspaceIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
210
210
  readonly LockedClosedFilledIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
211
+ readonly MinimizeIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
211
212
  readonly ActivityLogIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
212
213
  readonly AlignBaselineIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
213
214
  readonly AlignBottomIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@openfin/ui-library",
3
3
  "description": "OpenFin UI Component Library",
4
- "version": "0.1.24",
4
+ "version": "0.1.25-alpha.1627678112",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "repository": "github:openfin/ui-library",