@openfin/ui-library 0.1.39 → 0.1.40-alpha.1649795654
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/dist/components/elements/Icon/openfin/FloppyDiskIcon.d.ts +6 -0
- package/dist/components/elements/Icon/openfin/{SavePageIcon.js → FloppyDiskIcon.js} +4 -4
- package/dist/components/elements/Icon/openfin/index.d.ts +1 -1
- package/dist/components/elements/Icon/openfin/index.js +1 -1
- package/dist/components/system/ThemeProvider/lib/constants.d.ts +1 -1
- package/package.json +1 -1
- package/dist/components/elements/Icon/openfin/SavePageIcon.d.ts +0 -6
|
@@ -11,13 +11,13 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
11
11
|
return t;
|
|
12
12
|
};
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.
|
|
14
|
+
exports.FloppyDiskIcon = void 0;
|
|
15
15
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* Floppy Disc Icon
|
|
18
18
|
*/
|
|
19
|
-
const
|
|
19
|
+
const FloppyDiskIcon = (_a) => {
|
|
20
20
|
var { color = 'currentColor' } = _a, props = __rest(_a, ["color"]);
|
|
21
21
|
return (jsx_runtime_1.jsx("svg", Object.assign({ width: "12", height: "12", viewBox: "0 0 12 12", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: jsx_runtime_1.jsx("path", { d: "M1.875 2.1875C1.875 2.15298 1.90298 2.125 1.9375 2.125H8.23039C8.24697 2.125 8.26287 2.13158 8.27459 2.14331L9.98169 3.85041C9.99341 3.86213 10 3.87803 10 3.89461V10.1875C10 10.222 9.97202 10.25 9.9375 10.25H1.9375C1.90298 10.25 1.875 10.222 1.875 10.1875V2.1875ZM1.9375 1.25C1.41973 1.25 1 1.66973 1 2.1875V10.1875C1 10.7053 1.41973 11.125 1.9375 11.125H9.9375C10.4553 11.125 10.875 10.7053 10.875 10.1875V3.89461C10.875 3.64597 10.7762 3.40751 10.6004 3.23169L8.89331 1.52459C8.71749 1.34877 8.47903 1.25 8.23039 1.25H1.9375ZM2.84924 3.4081C2.84924 3.23754 2.98751 3.09927 3.15807 3.09927H7.4816C7.65215 3.09927 7.79042 3.23754 7.79042 3.4081V4.64339C7.79042 4.81395 7.65215 4.95221 7.4816 4.95221H3.15807C2.98751 4.95221 2.84924 4.81395 2.84924 4.64339V3.4081ZM4.5368 6.63977C4.82638 6.35019 5.21913 6.18751 5.62865 6.18751C6.03818 6.18751 6.43093 6.35019 6.72051 6.63977C7.01009 6.92935 7.17277 7.3221 7.17277 7.73163C7.17277 8.14115 7.01009 8.5339 6.72051 8.82348C6.43093 9.11306 6.03818 9.27574 5.62865 9.27574C5.21913 9.27574 4.82638 9.11306 4.5368 8.82348C4.24722 8.5339 4.08454 8.14115 4.08454 7.73163C4.08454 7.3221 4.24722 6.92935 4.5368 6.63977Z", fill: color, role: "img" }, void 0) }), void 0));
|
|
22
22
|
};
|
|
23
|
-
exports.
|
|
23
|
+
exports.FloppyDiskIcon = FloppyDiskIcon;
|
|
@@ -19,4 +19,4 @@ __exportStar(require("./LightBulbFilledIcon"), exports);
|
|
|
19
19
|
__exportStar(require("./LightBulbOutlinedIcon"), exports);
|
|
20
20
|
__exportStar(require("./FilterIcon"), exports);
|
|
21
21
|
__exportStar(require("./BrokenLinkIcon"), exports);
|
|
22
|
-
__exportStar(require("./
|
|
22
|
+
__exportStar(require("./FloppyDiskIcon"), exports);
|
|
@@ -219,7 +219,7 @@ export declare const IconSet: {
|
|
|
219
219
|
readonly LightBulbOutlinedIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
220
220
|
readonly FilterIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
221
221
|
readonly BrokenLinkIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
222
|
-
readonly
|
|
222
|
+
readonly FloppyDiskIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
223
223
|
readonly ActivityLogIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
224
224
|
readonly AlignBaselineIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
225
225
|
readonly AlignBottomIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
package/package.json
CHANGED