@expo/styleguide-native 0.3.2 → 0.4.2-alpha.1
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/index.d.ts +2 -1
- package/dist/index.js +3 -1
- package/dist/src/icons/ActivityIcon.d.ts +4 -0
- package/dist/src/icons/ActivityIcon.js +33 -0
- package/dist/src/icons/AtSignIcon.d.ts +4 -0
- package/dist/src/icons/AtSignIcon.js +29 -0
- package/dist/src/icons/BuildIcon.js +1 -1
- package/dist/src/icons/CredentialIcon.d.ts +4 -0
- package/dist/src/icons/CredentialIcon.js +35 -0
- package/dist/src/icons/DeploymentIcon.d.ts +4 -0
- package/dist/src/icons/DeploymentIcon.js +29 -0
- package/dist/src/icons/DeploymentsIcon.d.ts +4 -0
- package/dist/src/icons/DeploymentsIcon.js +36 -0
- package/dist/src/icons/GeneralIcon.d.ts +4 -0
- package/dist/src/icons/GeneralIcon.js +40 -0
- package/dist/src/icons/InvoicesIcon.d.ts +4 -0
- package/dist/src/icons/InvoicesIcon.js +30 -0
- package/dist/src/icons/LockIcon.js +1 -2
- package/dist/src/icons/OverviewIcon.d.ts +4 -0
- package/dist/src/icons/OverviewIcon.js +29 -0
- package/dist/src/icons/PlansIcon.d.ts +4 -0
- package/dist/src/icons/PlansIcon.js +34 -0
- package/dist/src/icons/ProjectTransferIcon.d.ts +4 -0
- package/dist/src/icons/ProjectTransferIcon.js +30 -0
- package/dist/src/icons/SecretsIcon.d.ts +4 -0
- package/dist/src/icons/SecretsIcon.js +29 -0
- package/dist/src/icons/TokensIcon.d.ts +4 -0
- package/dist/src/icons/TokensIcon.js +31 -0
- package/dist/src/icons/UpdateIcon.d.ts +4 -0
- package/dist/src/icons/UpdateIcon.js +30 -0
- package/dist/src/icons/index.d.ts +13 -0
- package/dist/src/icons/index.js +28 -2
- package/dist/src/styles/breakpoints.d.ts +5 -0
- package/dist/src/styles/breakpoints.js +8 -0
- package/dist/src/styles/palette.js +84 -84
- package/dist/src/styles/themes.d.ts +20 -0
- package/dist/src/styles/themes.js +20 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -3,5 +3,6 @@ import { shadows } from './src/styles/shadows';
|
|
|
3
3
|
import { lightTheme, darkTheme } from './src/styles/themes';
|
|
4
4
|
import { iconSize, borderRadius } from './src/styles/sizing';
|
|
5
5
|
import { spacing } from './src/styles/spacing';
|
|
6
|
+
import { breakpoints } from './src/styles/breakpoints';
|
|
6
7
|
export * from './src/icons';
|
|
7
|
-
export { borderRadius, darkTheme, iconSize, lightTheme, palette, shadows, spacing, };
|
|
8
|
+
export { borderRadius, breakpoints, darkTheme, iconSize, lightTheme, palette, shadows, spacing, };
|
package/dist/index.js
CHANGED
|
@@ -10,7 +10,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
10
10
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
11
|
};
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
-
exports.spacing = exports.shadows = exports.palette = exports.lightTheme = exports.iconSize = exports.darkTheme = exports.borderRadius = void 0;
|
|
13
|
+
exports.spacing = exports.shadows = exports.palette = exports.lightTheme = exports.iconSize = exports.darkTheme = exports.breakpoints = exports.borderRadius = void 0;
|
|
14
14
|
const palette_1 = require("./src/styles/palette");
|
|
15
15
|
Object.defineProperty(exports, "palette", { enumerable: true, get: function () { return palette_1.palette; } });
|
|
16
16
|
const shadows_1 = require("./src/styles/shadows");
|
|
@@ -23,4 +23,6 @@ Object.defineProperty(exports, "iconSize", { enumerable: true, get: function ()
|
|
|
23
23
|
Object.defineProperty(exports, "borderRadius", { enumerable: true, get: function () { return sizing_1.borderRadius; } });
|
|
24
24
|
const spacing_1 = require("./src/styles/spacing");
|
|
25
25
|
Object.defineProperty(exports, "spacing", { enumerable: true, get: function () { return spacing_1.spacing; } });
|
|
26
|
+
const breakpoints_1 = require("./src/styles/breakpoints");
|
|
27
|
+
Object.defineProperty(exports, "breakpoints", { enumerable: true, get: function () { return breakpoints_1.breakpoints; } });
|
|
26
28
|
__exportStar(require("./src/icons"), exports);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
const React = __importStar(require("react"));
|
|
23
|
+
const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
24
|
+
function ActivityIcon(props) {
|
|
25
|
+
const { size, color, width, height } = props;
|
|
26
|
+
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 21", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.G, { clipPath: "url(#activity-icon_svg__activity-icon_svg__clip0)" },
|
|
28
|
+
React.createElement(react_native_svg_1.Path, { d: "M13.086 1.541l-9.947 8.742 6.385 1.711-2.61 6.905 9.947-8.741-6.386-1.711 2.61-6.906z", stroke: color || "#000", strokeWidth: 1.75, strokeLinecap: "round", strokeLinejoin: "round" })),
|
|
29
|
+
React.createElement(react_native_svg_1.Defs, null,
|
|
30
|
+
React.createElement(react_native_svg_1.ClipPath, { id: "activity-icon_svg__activity-icon_svg__clip0" },
|
|
31
|
+
React.createElement(react_native_svg_1.Path, { fill: "#fff", transform: "translate(0 .22)", d: "M0 0h20v20H0z" })))));
|
|
32
|
+
}
|
|
33
|
+
exports.default = ActivityIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
const React = __importStar(require("react"));
|
|
23
|
+
const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
24
|
+
function AtSignIcon(props) {
|
|
25
|
+
const { size, color, width, height } = props;
|
|
26
|
+
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 20", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.Path, { d: "M13.333 6.667v4.166a2.5 2.5 0 105 0V10a8.333 8.333 0 10-3.266 6.617M13.333 10a3.333 3.333 0 11-6.666 0 3.333 3.333 0 016.666 0z", stroke: color || "#000", strokeWidth: 1.85, strokeLinecap: "square", strokeLinejoin: "round" })));
|
|
28
|
+
}
|
|
29
|
+
exports.default = AtSignIcon;
|
|
@@ -24,6 +24,6 @@ const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
|
24
24
|
function BuildIcon(props) {
|
|
25
25
|
const { size, color, width, height } = props;
|
|
26
26
|
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 20", fill: "none" }, props),
|
|
27
|
-
React.createElement(react_native_svg_1.Path, {
|
|
27
|
+
React.createElement(react_native_svg_1.Path, { d: "M10 18.943V9.098m0 9.845L1.964 14.92V5.08M10 18.943l8.037-4.022V5.08M10 9.098L1.964 5.08M10 9.098l8.037-4.018m-16.073 0L10 1.057l8.037 4.023", stroke: color || "#000", strokeWidth: 1.85 })));
|
|
28
28
|
}
|
|
29
29
|
exports.default = BuildIcon;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
const React = __importStar(require("react"));
|
|
23
|
+
const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
24
|
+
function CredentialIcon(props) {
|
|
25
|
+
const { size, color, width, height } = props;
|
|
26
|
+
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 21", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.G, { clipPath: "url(#credential-icon_svg__credential-icon_svg__clip0)" },
|
|
28
|
+
React.createElement(react_native_svg_1.Path, { d: "M11.327 11.426h.75V9.88l-1.214.957.464.59zm-6.187 0l.465-.589L4.39 9.88v1.546h.75zm0 7.514h-.75v1.391l1.163-.765-.413-.626zm1.563-1.029l.409-.629-.411-.267-.41.27.412.626zm1.585 1.029l-.408.629.451.293.422-.333-.465-.59zm1.303-1.029l.382-.645-.443-.262-.404.319.465.588zm1.736 1.029l-.382.645 1.132.67V18.94h-.75zm-.464-8.103c-.724.57-1.636.91-2.63.91v1.5c1.343 0 2.58-.46 3.558-1.232l-.928-1.178zm-2.63.91c-.993 0-1.905-.34-2.628-.91l-.929 1.178a5.729 5.729 0 003.558 1.233v-1.5zM5.89 18.94v-7.514h-1.5v7.514h1.5zm.401-1.655l-1.563 1.028.825 1.253 1.563-1.028-.825-1.253zm2.406 1.026l-1.585-1.029-.817 1.259 1.585 1.028.817-1.258zm.429-.988L7.824 18.35l.93 1.178 1.301-1.029-.93-1.177zm2.583.972l-1.736-1.029-.765 1.29 1.737 1.03.764-1.291zm-1.132-6.869v7.514h1.5v-7.514h-1.5z", fill: color || "#000" }),
|
|
29
|
+
React.createElement(react_native_svg_1.Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M2 2.25h16a.25.25 0 01.25.25v11.474a.25.25 0 01-.25.25h-6.673v1.75H18a2 2 0 002-2V2.5a2 2 0 00-2-2H2a2 2 0 00-2 2v11.474a2 2 0 002 2h3.14v-1.75H2a.25.25 0 01-.25-.25V2.5A.25.25 0 012 2.25z", fill: color || "#000" }),
|
|
30
|
+
React.createElement(react_native_svg_1.Circle, { cx: 8.234, cy: 8.292, r: 4, stroke: color || "#000", strokeWidth: 2 })),
|
|
31
|
+
React.createElement(react_native_svg_1.Defs, null,
|
|
32
|
+
React.createElement(react_native_svg_1.ClipPath, { id: "credential-icon_svg__credential-icon_svg__clip0" },
|
|
33
|
+
React.createElement(react_native_svg_1.Path, { fill: "#fff", transform: "translate(0 .5)", d: "M0 0h20v20H0z" })))));
|
|
34
|
+
}
|
|
35
|
+
exports.default = CredentialIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
const React = __importStar(require("react"));
|
|
23
|
+
const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
24
|
+
function DeploymentIcon(props) {
|
|
25
|
+
const { size, color, width, height } = props;
|
|
26
|
+
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 20", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.Path, { d: "M2 2a2 2 0 00-2 2v12a2 2 0 002 2h7V9.747l-2.96 2.96a1 1 0 11-1.414-1.414l4.667-4.667a.996.996 0 01.71-.293c.28.001.534.117.715.304l4.656 4.656a1 1 0 01-1.415 1.414L11 9.747V18h7a2 2 0 002-2V4a2 2 0 00-2-2H2z", fill: color || "#000" })));
|
|
28
|
+
}
|
|
29
|
+
exports.default = DeploymentIcon;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
const React = __importStar(require("react"));
|
|
23
|
+
const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
24
|
+
function DeploymentsIcon(props) {
|
|
25
|
+
const { size, color, width, height } = props;
|
|
26
|
+
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 21", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.G, { clipPath: "url(#deployments-icon_svg__deployments-icon_svg__clip0)" },
|
|
28
|
+
React.createElement(react_native_svg_1.Path, { clipRule: "evenodd", d: "M18.855 1.331l-1.15 6.85a4 4 0 01-1.886 2.766l-6.943 4.171-3.836-3.822L9.175 4.15a4 4 0 012.958-1.965l6.722-.854z", stroke: color || "#000", strokeWidth: 1.75, strokeLinejoin: "round" }),
|
|
29
|
+
React.createElement(react_native_svg_1.Path, { clipRule: "evenodd", d: "M4.974 11.517L.956 11.03l4.602-4.766L8.12 5.74l-3.147 5.778zm3.966 3.869l.592 3.867 4.718-4.566.397-2.725-5.707 3.424z", stroke: color || "#000", strokeWidth: 1.5, strokeLinejoin: "round" }),
|
|
30
|
+
React.createElement(react_native_svg_1.Ellipse, { cx: 13.528, cy: 6.693, rx: 1.816, ry: 2.301, transform: "rotate(44.984 13.528 6.693)", fill: color || "#000" }),
|
|
31
|
+
React.createElement(react_native_svg_1.Path, { d: "M4.067 14.262l-2.79 2.819m4.729-1.002l-2.791 2.819", stroke: color || "#000", strokeWidth: 1.5, strokeLinecap: "round" })),
|
|
32
|
+
React.createElement(react_native_svg_1.Defs, null,
|
|
33
|
+
React.createElement(react_native_svg_1.ClipPath, { id: "deployments-icon_svg__deployments-icon_svg__clip0" },
|
|
34
|
+
React.createElement(react_native_svg_1.Path, { fill: "#fff", transform: "translate(0 .22)", d: "M0 0h20v20H0z" })))));
|
|
35
|
+
}
|
|
36
|
+
exports.default = DeploymentsIcon;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
const React = __importStar(require("react"));
|
|
23
|
+
const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
24
|
+
function GeneralIcon(props) {
|
|
25
|
+
const { size, color, width, height } = props;
|
|
26
|
+
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 20", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.Mask, { id: "general-icon_svg__a", fill: "#fff" },
|
|
28
|
+
React.createElement(react_native_svg_1.Rect, { width: 8.75, height: 8.75, rx: 1 })),
|
|
29
|
+
React.createElement(react_native_svg_1.Rect, { width: 8.75, height: 8.75, rx: 1, stroke: color || "#000", strokeWidth: 3.5, mask: "url(#general-icon_svg__a)" }),
|
|
30
|
+
React.createElement(react_native_svg_1.Mask, { id: "general-icon_svg__b", fill: "#fff" },
|
|
31
|
+
React.createElement(react_native_svg_1.Rect, { y: 11.25, width: 8.75, height: 8.75, rx: 1 })),
|
|
32
|
+
React.createElement(react_native_svg_1.Rect, { y: 11.25, width: 8.75, height: 8.75, rx: 1, stroke: color || "#000", strokeWidth: 3.5, mask: "url(#general-icon_svg__b)" }),
|
|
33
|
+
React.createElement(react_native_svg_1.Mask, { id: "general-icon_svg__c", fill: "#fff" },
|
|
34
|
+
React.createElement(react_native_svg_1.Rect, { x: 11.25, y: 11.25, width: 8.75, height: 8.75, rx: 1 })),
|
|
35
|
+
React.createElement(react_native_svg_1.Rect, { x: 11.25, y: 11.25, width: 8.75, height: 8.75, rx: 1, stroke: color || "#000", strokeWidth: 3.5, mask: "url(#general-icon_svg__c)" }),
|
|
36
|
+
React.createElement(react_native_svg_1.Mask, { id: "general-icon_svg__d", fill: "#fff" },
|
|
37
|
+
React.createElement(react_native_svg_1.Rect, { x: 11.25, width: 8.75, height: 8.75, rx: 1 })),
|
|
38
|
+
React.createElement(react_native_svg_1.Rect, { x: 11.25, width: 8.75, height: 8.75, rx: 1, stroke: color || "#000", strokeWidth: 3.5, mask: "url(#general-icon_svg__d)" })));
|
|
39
|
+
}
|
|
40
|
+
exports.default = GeneralIcon;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
const React = __importStar(require("react"));
|
|
23
|
+
const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
24
|
+
function InvoicesIcon(props) {
|
|
25
|
+
const { size, color, width, height } = props;
|
|
26
|
+
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 20", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.Path, { d: "M10.45 17.75l-.45-.27-.45.27-2.088 1.253-2.57-1.286-.484-.241-.433.324-1.767 1.325H2A1.125 1.125 0 01.875 18V3C.875 1.826 1.826.875 3 .875h14c1.174 0 2.125.951 2.125 2.125v15c0 .621-.504 1.125-1.125 1.125h-.208L16.025 17.8l-.433-.325-.483.242-2.57 1.286-2.089-1.253z", stroke: color || "#000", strokeWidth: 1.75 }),
|
|
28
|
+
React.createElement(react_native_svg_1.Path, { d: "M4.444 5.183h11.112M4.444 7.88h11.112M4.444 10.813h9.226", stroke: color || "#000" })));
|
|
29
|
+
}
|
|
30
|
+
exports.default = InvoicesIcon;
|
|
@@ -24,7 +24,6 @@ const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
|
24
24
|
function LockIcon(props) {
|
|
25
25
|
const { size, color, width, height } = props;
|
|
26
26
|
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 20", fill: "none" }, props),
|
|
27
|
-
React.createElement(react_native_svg_1.Path, {
|
|
28
|
-
React.createElement(react_native_svg_1.Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M5.145 4.855a4.855 4.855 0 119.71 0v2.803a2.875 2.875 0 012.641 2.865v6.602A2.875 2.875 0 0114.622 20H5.378a2.875 2.875 0 01-2.874-2.875v-6.602a2.875 2.875 0 012.64-2.865V4.855zm.233 3.26a2.407 2.407 0 00-2.407 2.408v6.602a2.407 2.407 0 002.407 2.408h9.244a2.407 2.407 0 002.407-2.408v-6.602a2.407 2.407 0 00-2.407-2.407H5.378zm1.554-.467h6.136V4.855a3.068 3.068 0 00-6.136 0v2.793zm6.603 0h.853V4.855a4.388 4.388 0 00-8.776 0v2.793h.853V4.855a3.535 3.535 0 017.07 0v2.793zM5.378 9.436c-.6 0-1.086.487-1.086 1.087v6.602c0 .6.486 1.087 1.086 1.087h9.244c.6 0 1.087-.486 1.087-1.087v-6.602c0-.6-.487-1.087-1.087-1.087H5.378zm-1.554 1.087c0-.858.696-1.554 1.554-1.554h9.244c.858 0 1.554.696 1.554 1.554v6.602c0 .859-.696 1.555-1.554 1.555H5.378a1.554 1.554 0 01-1.554-1.555v-6.602z", fill: color || "#000" })));
|
|
27
|
+
React.createElement(react_native_svg_1.Path, { d: "M4.998 5.814v-.451c0-1.337.483-2.61 1.386-3.544A4.522 4.522 0 019.734.337h.161c2.626 0 4.736 2.255 4.736 5.026v1.9c-.612-.24-1.353-.321-2.03-.29v-1.61c0-1.579-1.208-2.868-2.69-2.868h-.177c-1.498 0-2.706 1.29-2.706 2.868v.435c0 .548-.387 1.015-.902 1.063H6.11a.966.966 0 01-1.034-.627 1.095 1.095 0 01-.078-.436v.016zM17 17.793v-7.7a1.112 1.112 0 00-.855-1.111l-.096-.016a31.895 31.895 0 00-12.597 0l-.08.016a1.112 1.112 0 00-.87 1.111v7.7c0 .532.354 1 .87 1.112l.644.129c3.785.76 7.684.76 11.469 0l.644-.13a1.111 1.111 0 00.87-1.127v.016z", fill: color || "#000" })));
|
|
29
28
|
}
|
|
30
29
|
exports.default = LockIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
const React = __importStar(require("react"));
|
|
23
|
+
const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
24
|
+
function OverviewIcon(props) {
|
|
25
|
+
const { size, color, width, height } = props;
|
|
26
|
+
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 20", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.Path, { d: "M1 .875h6.75c.069 0 .125.056.125.125v6.75a.125.125 0 01-.125.125H1a.125.125 0 01-.125-.125V1C.875.931.931.875 1 .875zm0 11.25h6.75c.069 0 .125.056.125.125V19a.125.125 0 01-.125.125H1A.125.125 0 01.875 19v-6.75c0-.069.056-.125.125-.125zm11.25 0H19c.069 0 .125.056.125.125V19a.125.125 0 01-.125.125h-6.75a.125.125 0 01-.125-.125v-6.75c0-.069.056-.125.125-.125zm0-11.25H19c.069 0 .125.056.125.125v6.75a.125.125 0 01-.125.125h-6.75a.125.125 0 01-.125-.125V1c0-.069.056-.125.125-.125z", stroke: color || "#000", strokeWidth: 1.75 })));
|
|
28
|
+
}
|
|
29
|
+
exports.default = OverviewIcon;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
const React = __importStar(require("react"));
|
|
23
|
+
const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
24
|
+
function PlansIcon(props) {
|
|
25
|
+
const { size, color, width, height } = props;
|
|
26
|
+
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 21", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.G, { clipPath: "url(#plans-icon_svg__plans-icon_svg__clip0)" },
|
|
28
|
+
React.createElement(react_native_svg_1.Path, { d: "M10 5.22l1.545 3.13L15 8.855l-2.5 2.435.59 3.44L10 13.105 6.91 14.73l.59-3.44L5 8.855l3.455-.505L10 5.22z", stroke: color || "#000", strokeWidth: 1.75, strokeLinecap: "round", strokeLinejoin: "round" })),
|
|
29
|
+
React.createElement(react_native_svg_1.Rect, { x: 0.875, y: 2.009, width: 18.25, height: 16.423, rx: 3.125, stroke: color || "#000", strokeWidth: 1.75 }),
|
|
30
|
+
React.createElement(react_native_svg_1.Defs, null,
|
|
31
|
+
React.createElement(react_native_svg_1.ClipPath, { id: "plans-icon_svg__plans-icon_svg__clip0" },
|
|
32
|
+
React.createElement(react_native_svg_1.Path, { fill: "#fff", transform: "translate(4 4.22)", d: "M0 0h12v12H0z" })))));
|
|
33
|
+
}
|
|
34
|
+
exports.default = PlansIcon;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
const React = __importStar(require("react"));
|
|
23
|
+
const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
24
|
+
function ProjectTransferIcon(props) {
|
|
25
|
+
const { size, color, width, height } = props;
|
|
26
|
+
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 20", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M11.089 4h-7.84a1.04 1.04 0 00-1.04 1.04v9.92c0 .574.465 1.04 1.04 1.04h9.92a1.04 1.04 0 001.04-1.04v-1.783l2-1.664v3.447a3.04 3.04 0 01-3.04 3.04h-9.92a3.04 3.04 0 01-3.04-3.04V5.04A3.04 3.04 0 013.249 2h7.84v2zm5.12 5.822l-2 1.664V5.04A1.04 1.04 0 0013.169 4h-.78V2l3.82 3.178v4.644z", fill: color || "#000" }),
|
|
28
|
+
React.createElement(react_native_svg_1.Path, { d: "M12.389 13V9.665c-2.894 0-4.93 1.188-5.93 2.085-.174.157-.475.028-.458-.21.35-4.948 4.345-6.273 6.388-6.305V2L19 7.5 12.389 13z", fill: color || "#000" })));
|
|
29
|
+
}
|
|
30
|
+
exports.default = ProjectTransferIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
const React = __importStar(require("react"));
|
|
23
|
+
const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
24
|
+
function SecretsIcon(props) {
|
|
25
|
+
const { size, color, width, height } = props;
|
|
26
|
+
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 21", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.Path, { d: "M17.839 2.183L16.09 3.932m0 0l2.623 2.623-3.06 3.06-2.623-2.623m3.06-3.06l-3.06 3.06m-3.593 3.593a4.81 4.81 0 11-6.8 6.8 4.808 4.808 0 016.8-6.799h0zm0 0l3.593-3.593", stroke: color || "#000", strokeWidth: 1.75, strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
28
|
+
}
|
|
29
|
+
exports.default = SecretsIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
const React = __importStar(require("react"));
|
|
23
|
+
const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
24
|
+
function TokensIcon(props) {
|
|
25
|
+
const { size, color, width, height } = props;
|
|
26
|
+
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 20", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.Circle, { cx: 13.5, cy: 10, r: 5.625, stroke: color || "#000", strokeWidth: 1.75 }),
|
|
28
|
+
React.createElement(react_native_svg_1.Path, { d: "M16.131 10A2.631 2.631 0 0013.5 7.37", stroke: color || "#000", strokeWidth: 1.5 }),
|
|
29
|
+
React.createElement(react_native_svg_1.Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M8.594 14.264a4.75 4.75 0 110-8.529A6.55 6.55 0 0110 4.522a6.5 6.5 0 100 10.956 6.533 6.533 0 01-1.406-1.213z", fill: color || "#000" })));
|
|
30
|
+
}
|
|
31
|
+
exports.default = TokensIcon;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
const React = __importStar(require("react"));
|
|
23
|
+
const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
24
|
+
function UpdateIcon(props) {
|
|
25
|
+
const { size, color, width, height } = props;
|
|
26
|
+
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 20", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.Path, { d: "M3.415 10L10 13.293 16.585 10l3.398 1.699L10 16.69.017 11.7 3.415 10z", fill: color || "#000" }),
|
|
28
|
+
React.createElement(react_native_svg_1.Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M10 4.651l-7.3 3.65 7.3 3.65 7.3-3.65-7.3-3.65zm0-1.341l9.983 4.99L10 13.293.017 8.3 10 3.31z", fill: color || "#000" })));
|
|
29
|
+
}
|
|
30
|
+
exports.default = UpdateIcon;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as ActivityIcon } from './ActivityIcon';
|
|
1
2
|
export { default as AddPhotoIcon } from './AddPhotoIcon';
|
|
2
3
|
export { default as AndroidIcon } from './AndroidIcon';
|
|
3
4
|
export { default as AppleAppStoreIcon } from './AppleAppStoreIcon';
|
|
@@ -5,6 +6,7 @@ export { default as AppleIcon } from './AppleIcon';
|
|
|
5
6
|
export { default as AppleSimulatorIcon } from './AppleSimulatorIcon';
|
|
6
7
|
export { default as ArrowLeftIcon } from './ArrowLeftIcon';
|
|
7
8
|
export { default as ArrowRightIcon } from './ArrowRightIcon';
|
|
9
|
+
export { default as AtSignIcon } from './AtSignIcon';
|
|
8
10
|
export { default as BadgeIcon } from './BadgeIcon';
|
|
9
11
|
export { default as BellIcon } from './BellIcon';
|
|
10
12
|
export { default as BranchIcon } from './BranchIcon';
|
|
@@ -16,17 +18,22 @@ export { default as CheckIcon } from './CheckIcon';
|
|
|
16
18
|
export { default as ChevronDownIcon } from './ChevronDownIcon';
|
|
17
19
|
export { default as CloudSlashIcon } from './CloudSlashIcon';
|
|
18
20
|
export { default as CommitIcon } from './CommitIcon';
|
|
21
|
+
export { default as CredentialIcon } from './CredentialIcon';
|
|
22
|
+
export { default as DeploymentIcon } from './DeploymentIcon';
|
|
23
|
+
export { default as DeploymentsIcon } from './DeploymentsIcon';
|
|
19
24
|
export { default as DiscordIcon } from './DiscordIcon';
|
|
20
25
|
export { default as DiscourseIcon } from './DiscourseIcon';
|
|
21
26
|
export { default as DownloadIcon } from './DownloadIcon';
|
|
22
27
|
export { default as ErrorIcon } from './ErrorIcon';
|
|
23
28
|
export { default as FacebookIcon } from './FacebookIcon';
|
|
29
|
+
export { default as GeneralIcon } from './GeneralIcon';
|
|
24
30
|
export { default as GithubIcon } from './GithubIcon';
|
|
25
31
|
export { default as GoogleAppStoreIcon } from './GoogleAppStoreIcon';
|
|
26
32
|
export { default as HomeFilledIcon } from './HomeFilledIcon';
|
|
27
33
|
export { default as HomeIcon } from './HomeIcon';
|
|
28
34
|
export { default as InfoIcon } from './InfoIcon';
|
|
29
35
|
export { default as InstagramIcon } from './InstagramIcon';
|
|
36
|
+
export { default as InvoicesIcon } from './InvoicesIcon';
|
|
30
37
|
export { default as LockIcon } from './LockIcon';
|
|
31
38
|
export { default as LogoutMobileIcon } from './LogoutMobileIcon';
|
|
32
39
|
export { default as LogsIcon } from './LogsIcon';
|
|
@@ -35,6 +42,9 @@ export { default as MegaphoneIcon } from './MegaphoneIcon';
|
|
|
35
42
|
export { default as MessageIcon } from './MessageIcon';
|
|
36
43
|
export { default as OneTimePasswordIcon } from './OneTimePasswordIcon';
|
|
37
44
|
export { default as OpenInternalIcon } from './OpenInternalIcon';
|
|
45
|
+
export { default as OverviewIcon } from './OverviewIcon';
|
|
46
|
+
export { default as PlansIcon } from './PlansIcon';
|
|
47
|
+
export { default as ProjectTransferIcon } from './ProjectTransferIcon';
|
|
38
48
|
export { default as PushToDeviceIcon } from './PushToDeviceIcon';
|
|
39
49
|
export { default as QrCodeIcon } from './QrCodeIcon';
|
|
40
50
|
export { default as QuestionIcon } from './QuestionIcon';
|
|
@@ -44,6 +54,7 @@ export { default as RolloutIcon } from './RolloutIcon';
|
|
|
44
54
|
export { default as RuntimeVersionIcon } from './RuntimeVersionIcon';
|
|
45
55
|
export { default as ScanIcon } from './ScanIcon';
|
|
46
56
|
export { default as SearchIcon } from './SearchIcon';
|
|
57
|
+
export { default as SecretsIcon } from './SecretsIcon';
|
|
47
58
|
export { default as SettingsFilledIcon } from './SettingsFilledIcon';
|
|
48
59
|
export { default as SettingsIcon } from './SettingsIcon';
|
|
49
60
|
export { default as SparklesIcon } from './SparklesIcon';
|
|
@@ -51,11 +62,13 @@ export { default as StoreIcon } from './StoreIcon';
|
|
|
51
62
|
export { default as ThemeAutoIcon } from './ThemeAutoIcon';
|
|
52
63
|
export { default as ThemeDarkIcon } from './ThemeDarkIcon';
|
|
53
64
|
export { default as ThemeLightIcon } from './ThemeLightIcon';
|
|
65
|
+
export { default as TokensIcon } from './TokensIcon';
|
|
54
66
|
export { default as TrashIcon } from './TrashIcon';
|
|
55
67
|
export { default as TriangleDownIcon } from './TriangleDownIcon';
|
|
56
68
|
export { default as TriangleRightIcon } from './TriangleRightIcon';
|
|
57
69
|
export { default as TwitchIcon } from './TwitchIcon';
|
|
58
70
|
export { default as TwitterIcon } from './TwitterIcon';
|
|
71
|
+
export { default as UpdateIcon } from './UpdateIcon';
|
|
59
72
|
export { default as UserFilledIcon } from './UserFilledIcon';
|
|
60
73
|
export { default as UserIcon } from './UserIcon';
|
|
61
74
|
export { default as UsersFilledIcon } from './UsersFilledIcon';
|
package/dist/src/icons/index.js
CHANGED
|
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
7
|
-
exports.YoutubeIcon = exports.XIcon = exports.WarningIcon = exports.VersionIcon = exports.UsersIcon = exports.UsersFilledIcon = exports.UserIcon = exports.UserFilledIcon = exports.TwitterIcon = exports.TwitchIcon = exports.TriangleRightIcon = exports.TriangleDownIcon = exports.TrashIcon = exports.ThemeLightIcon = exports.ThemeDarkIcon = exports.ThemeAutoIcon = void 0;
|
|
6
|
+
exports.QuestionIcon = exports.QrCodeIcon = exports.PushToDeviceIcon = exports.ProjectTransferIcon = exports.PlansIcon = exports.OverviewIcon = exports.OpenInternalIcon = exports.OneTimePasswordIcon = exports.MessageIcon = exports.MegaphoneIcon = exports.MailIcon = exports.LogsIcon = exports.LogoutMobileIcon = exports.LockIcon = exports.InvoicesIcon = exports.InstagramIcon = exports.InfoIcon = exports.HomeIcon = exports.HomeFilledIcon = exports.GoogleAppStoreIcon = exports.GithubIcon = exports.GeneralIcon = exports.FacebookIcon = exports.ErrorIcon = exports.DownloadIcon = exports.DiscourseIcon = exports.DiscordIcon = exports.DeploymentsIcon = exports.DeploymentIcon = exports.CredentialIcon = exports.CommitIcon = exports.CloudSlashIcon = exports.ChevronDownIcon = exports.CheckIcon = exports.ChannelIcon = exports.BuildProfileIcon = exports.BuildNumberIcon = exports.BuildIcon = exports.BranchIcon = exports.BellIcon = exports.BadgeIcon = exports.AtSignIcon = exports.ArrowRightIcon = exports.ArrowLeftIcon = exports.AppleSimulatorIcon = exports.AppleIcon = exports.AppleAppStoreIcon = exports.AndroidIcon = exports.AddPhotoIcon = exports.ActivityIcon = void 0;
|
|
7
|
+
exports.YoutubeIcon = exports.XIcon = exports.WarningIcon = exports.VersionIcon = exports.UsersIcon = exports.UsersFilledIcon = exports.UserIcon = exports.UserFilledIcon = exports.UpdateIcon = exports.TwitterIcon = exports.TwitchIcon = exports.TriangleRightIcon = exports.TriangleDownIcon = exports.TrashIcon = exports.TokensIcon = exports.ThemeLightIcon = exports.ThemeDarkIcon = exports.ThemeAutoIcon = exports.StoreIcon = exports.SparklesIcon = exports.SettingsIcon = exports.SettingsFilledIcon = exports.SecretsIcon = exports.SearchIcon = exports.ScanIcon = exports.RuntimeVersionIcon = exports.RolloutIcon = exports.RefreshIcon = exports.QuestionMarkIcon = void 0;
|
|
8
|
+
var ActivityIcon_1 = require("./ActivityIcon");
|
|
9
|
+
Object.defineProperty(exports, "ActivityIcon", { enumerable: true, get: function () { return __importDefault(ActivityIcon_1).default; } });
|
|
8
10
|
var AddPhotoIcon_1 = require("./AddPhotoIcon");
|
|
9
11
|
Object.defineProperty(exports, "AddPhotoIcon", { enumerable: true, get: function () { return __importDefault(AddPhotoIcon_1).default; } });
|
|
10
12
|
var AndroidIcon_1 = require("./AndroidIcon");
|
|
@@ -19,6 +21,8 @@ var ArrowLeftIcon_1 = require("./ArrowLeftIcon");
|
|
|
19
21
|
Object.defineProperty(exports, "ArrowLeftIcon", { enumerable: true, get: function () { return __importDefault(ArrowLeftIcon_1).default; } });
|
|
20
22
|
var ArrowRightIcon_1 = require("./ArrowRightIcon");
|
|
21
23
|
Object.defineProperty(exports, "ArrowRightIcon", { enumerable: true, get: function () { return __importDefault(ArrowRightIcon_1).default; } });
|
|
24
|
+
var AtSignIcon_1 = require("./AtSignIcon");
|
|
25
|
+
Object.defineProperty(exports, "AtSignIcon", { enumerable: true, get: function () { return __importDefault(AtSignIcon_1).default; } });
|
|
22
26
|
var BadgeIcon_1 = require("./BadgeIcon");
|
|
23
27
|
Object.defineProperty(exports, "BadgeIcon", { enumerable: true, get: function () { return __importDefault(BadgeIcon_1).default; } });
|
|
24
28
|
var BellIcon_1 = require("./BellIcon");
|
|
@@ -41,6 +45,12 @@ var CloudSlashIcon_1 = require("./CloudSlashIcon");
|
|
|
41
45
|
Object.defineProperty(exports, "CloudSlashIcon", { enumerable: true, get: function () { return __importDefault(CloudSlashIcon_1).default; } });
|
|
42
46
|
var CommitIcon_1 = require("./CommitIcon");
|
|
43
47
|
Object.defineProperty(exports, "CommitIcon", { enumerable: true, get: function () { return __importDefault(CommitIcon_1).default; } });
|
|
48
|
+
var CredentialIcon_1 = require("./CredentialIcon");
|
|
49
|
+
Object.defineProperty(exports, "CredentialIcon", { enumerable: true, get: function () { return __importDefault(CredentialIcon_1).default; } });
|
|
50
|
+
var DeploymentIcon_1 = require("./DeploymentIcon");
|
|
51
|
+
Object.defineProperty(exports, "DeploymentIcon", { enumerable: true, get: function () { return __importDefault(DeploymentIcon_1).default; } });
|
|
52
|
+
var DeploymentsIcon_1 = require("./DeploymentsIcon");
|
|
53
|
+
Object.defineProperty(exports, "DeploymentsIcon", { enumerable: true, get: function () { return __importDefault(DeploymentsIcon_1).default; } });
|
|
44
54
|
var DiscordIcon_1 = require("./DiscordIcon");
|
|
45
55
|
Object.defineProperty(exports, "DiscordIcon", { enumerable: true, get: function () { return __importDefault(DiscordIcon_1).default; } });
|
|
46
56
|
var DiscourseIcon_1 = require("./DiscourseIcon");
|
|
@@ -51,6 +61,8 @@ var ErrorIcon_1 = require("./ErrorIcon");
|
|
|
51
61
|
Object.defineProperty(exports, "ErrorIcon", { enumerable: true, get: function () { return __importDefault(ErrorIcon_1).default; } });
|
|
52
62
|
var FacebookIcon_1 = require("./FacebookIcon");
|
|
53
63
|
Object.defineProperty(exports, "FacebookIcon", { enumerable: true, get: function () { return __importDefault(FacebookIcon_1).default; } });
|
|
64
|
+
var GeneralIcon_1 = require("./GeneralIcon");
|
|
65
|
+
Object.defineProperty(exports, "GeneralIcon", { enumerable: true, get: function () { return __importDefault(GeneralIcon_1).default; } });
|
|
54
66
|
var GithubIcon_1 = require("./GithubIcon");
|
|
55
67
|
Object.defineProperty(exports, "GithubIcon", { enumerable: true, get: function () { return __importDefault(GithubIcon_1).default; } });
|
|
56
68
|
var GoogleAppStoreIcon_1 = require("./GoogleAppStoreIcon");
|
|
@@ -63,6 +75,8 @@ var InfoIcon_1 = require("./InfoIcon");
|
|
|
63
75
|
Object.defineProperty(exports, "InfoIcon", { enumerable: true, get: function () { return __importDefault(InfoIcon_1).default; } });
|
|
64
76
|
var InstagramIcon_1 = require("./InstagramIcon");
|
|
65
77
|
Object.defineProperty(exports, "InstagramIcon", { enumerable: true, get: function () { return __importDefault(InstagramIcon_1).default; } });
|
|
78
|
+
var InvoicesIcon_1 = require("./InvoicesIcon");
|
|
79
|
+
Object.defineProperty(exports, "InvoicesIcon", { enumerable: true, get: function () { return __importDefault(InvoicesIcon_1).default; } });
|
|
66
80
|
var LockIcon_1 = require("./LockIcon");
|
|
67
81
|
Object.defineProperty(exports, "LockIcon", { enumerable: true, get: function () { return __importDefault(LockIcon_1).default; } });
|
|
68
82
|
var LogoutMobileIcon_1 = require("./LogoutMobileIcon");
|
|
@@ -79,6 +93,12 @@ var OneTimePasswordIcon_1 = require("./OneTimePasswordIcon");
|
|
|
79
93
|
Object.defineProperty(exports, "OneTimePasswordIcon", { enumerable: true, get: function () { return __importDefault(OneTimePasswordIcon_1).default; } });
|
|
80
94
|
var OpenInternalIcon_1 = require("./OpenInternalIcon");
|
|
81
95
|
Object.defineProperty(exports, "OpenInternalIcon", { enumerable: true, get: function () { return __importDefault(OpenInternalIcon_1).default; } });
|
|
96
|
+
var OverviewIcon_1 = require("./OverviewIcon");
|
|
97
|
+
Object.defineProperty(exports, "OverviewIcon", { enumerable: true, get: function () { return __importDefault(OverviewIcon_1).default; } });
|
|
98
|
+
var PlansIcon_1 = require("./PlansIcon");
|
|
99
|
+
Object.defineProperty(exports, "PlansIcon", { enumerable: true, get: function () { return __importDefault(PlansIcon_1).default; } });
|
|
100
|
+
var ProjectTransferIcon_1 = require("./ProjectTransferIcon");
|
|
101
|
+
Object.defineProperty(exports, "ProjectTransferIcon", { enumerable: true, get: function () { return __importDefault(ProjectTransferIcon_1).default; } });
|
|
82
102
|
var PushToDeviceIcon_1 = require("./PushToDeviceIcon");
|
|
83
103
|
Object.defineProperty(exports, "PushToDeviceIcon", { enumerable: true, get: function () { return __importDefault(PushToDeviceIcon_1).default; } });
|
|
84
104
|
var QrCodeIcon_1 = require("./QrCodeIcon");
|
|
@@ -97,6 +117,8 @@ var ScanIcon_1 = require("./ScanIcon");
|
|
|
97
117
|
Object.defineProperty(exports, "ScanIcon", { enumerable: true, get: function () { return __importDefault(ScanIcon_1).default; } });
|
|
98
118
|
var SearchIcon_1 = require("./SearchIcon");
|
|
99
119
|
Object.defineProperty(exports, "SearchIcon", { enumerable: true, get: function () { return __importDefault(SearchIcon_1).default; } });
|
|
120
|
+
var SecretsIcon_1 = require("./SecretsIcon");
|
|
121
|
+
Object.defineProperty(exports, "SecretsIcon", { enumerable: true, get: function () { return __importDefault(SecretsIcon_1).default; } });
|
|
100
122
|
var SettingsFilledIcon_1 = require("./SettingsFilledIcon");
|
|
101
123
|
Object.defineProperty(exports, "SettingsFilledIcon", { enumerable: true, get: function () { return __importDefault(SettingsFilledIcon_1).default; } });
|
|
102
124
|
var SettingsIcon_1 = require("./SettingsIcon");
|
|
@@ -111,6 +133,8 @@ var ThemeDarkIcon_1 = require("./ThemeDarkIcon");
|
|
|
111
133
|
Object.defineProperty(exports, "ThemeDarkIcon", { enumerable: true, get: function () { return __importDefault(ThemeDarkIcon_1).default; } });
|
|
112
134
|
var ThemeLightIcon_1 = require("./ThemeLightIcon");
|
|
113
135
|
Object.defineProperty(exports, "ThemeLightIcon", { enumerable: true, get: function () { return __importDefault(ThemeLightIcon_1).default; } });
|
|
136
|
+
var TokensIcon_1 = require("./TokensIcon");
|
|
137
|
+
Object.defineProperty(exports, "TokensIcon", { enumerable: true, get: function () { return __importDefault(TokensIcon_1).default; } });
|
|
114
138
|
var TrashIcon_1 = require("./TrashIcon");
|
|
115
139
|
Object.defineProperty(exports, "TrashIcon", { enumerable: true, get: function () { return __importDefault(TrashIcon_1).default; } });
|
|
116
140
|
var TriangleDownIcon_1 = require("./TriangleDownIcon");
|
|
@@ -121,6 +145,8 @@ var TwitchIcon_1 = require("./TwitchIcon");
|
|
|
121
145
|
Object.defineProperty(exports, "TwitchIcon", { enumerable: true, get: function () { return __importDefault(TwitchIcon_1).default; } });
|
|
122
146
|
var TwitterIcon_1 = require("./TwitterIcon");
|
|
123
147
|
Object.defineProperty(exports, "TwitterIcon", { enumerable: true, get: function () { return __importDefault(TwitterIcon_1).default; } });
|
|
148
|
+
var UpdateIcon_1 = require("./UpdateIcon");
|
|
149
|
+
Object.defineProperty(exports, "UpdateIcon", { enumerable: true, get: function () { return __importDefault(UpdateIcon_1).default; } });
|
|
124
150
|
var UserFilledIcon_1 = require("./UserFilledIcon");
|
|
125
151
|
Object.defineProperty(exports, "UserFilledIcon", { enumerable: true, get: function () { return __importDefault(UserFilledIcon_1).default; } });
|
|
126
152
|
var UserIcon_1 = require("./UserIcon");
|
|
@@ -45,12 +45,12 @@ exports.palette = {
|
|
|
45
45
|
100: '#ffebda',
|
|
46
46
|
200: '#ffd1ac',
|
|
47
47
|
300: '#ffab70',
|
|
48
|
-
400: '#
|
|
49
|
-
500: '#
|
|
50
|
-
600: '#
|
|
51
|
-
700: '#
|
|
52
|
-
800: '#
|
|
53
|
-
900: '#
|
|
48
|
+
400: '#fb8e41',
|
|
49
|
+
500: '#fa7c25',
|
|
50
|
+
600: '#de6614',
|
|
51
|
+
700: '#c45408',
|
|
52
|
+
800: '#96430b',
|
|
53
|
+
900: '#7a4018',
|
|
54
54
|
},
|
|
55
55
|
pink: {
|
|
56
56
|
'000': '#ffeef8',
|
|
@@ -80,13 +80,13 @@ exports.palette = {
|
|
|
80
80
|
'000': '#f9f7ff',
|
|
81
81
|
100: '#ede9ff',
|
|
82
82
|
200: '#d2cafd',
|
|
83
|
-
300: '#
|
|
84
|
-
400: '#
|
|
83
|
+
300: '#a193f9',
|
|
84
|
+
400: '#664fff',
|
|
85
85
|
500: '#4630eb',
|
|
86
|
-
600: '#
|
|
87
|
-
700: '#
|
|
88
|
-
800: '#
|
|
89
|
-
900: '#
|
|
86
|
+
600: '#3929c4',
|
|
87
|
+
700: '#2e2496',
|
|
88
|
+
800: '#261f73',
|
|
89
|
+
900: '#221e5c',
|
|
90
90
|
},
|
|
91
91
|
red: {
|
|
92
92
|
'000': '#fee',
|
|
@@ -104,12 +104,12 @@ exports.palette = {
|
|
|
104
104
|
'000': '#fffdef',
|
|
105
105
|
100: '#fffbdd',
|
|
106
106
|
200: '#fff5b1',
|
|
107
|
-
300: '#
|
|
107
|
+
300: '#ffeb87',
|
|
108
108
|
400: '#ffdf5d',
|
|
109
109
|
500: '#ffd33d',
|
|
110
|
-
600: '#
|
|
111
|
-
700: '#
|
|
112
|
-
800: '#
|
|
110
|
+
600: '#f2c012',
|
|
111
|
+
700: '#cfa108',
|
|
112
|
+
800: '#9c7800',
|
|
113
113
|
900: '#735c0f',
|
|
114
114
|
},
|
|
115
115
|
white: '#fff',
|
|
@@ -117,15 +117,15 @@ exports.palette = {
|
|
|
117
117
|
},
|
|
118
118
|
dark: {
|
|
119
119
|
blue: {
|
|
120
|
-
'000': '#
|
|
121
|
-
100: '#
|
|
122
|
-
200: '#
|
|
123
|
-
300: '#
|
|
124
|
-
400: '#
|
|
125
|
-
500: '#
|
|
126
|
-
600: '#
|
|
127
|
-
700: '#
|
|
128
|
-
800: '#
|
|
120
|
+
'000': '#122447',
|
|
121
|
+
100: '#173366',
|
|
122
|
+
200: '#1e4894',
|
|
123
|
+
300: '#2362c4',
|
|
124
|
+
400: '#2d73e0',
|
|
125
|
+
500: '#4794fd',
|
|
126
|
+
600: '#61abff',
|
|
127
|
+
700: '#8fcaff',
|
|
128
|
+
800: '#addaff',
|
|
129
129
|
900: '#cae8ff',
|
|
130
130
|
},
|
|
131
131
|
gray: {
|
|
@@ -142,88 +142,88 @@ exports.palette = {
|
|
|
142
142
|
1000: '#fdfdfe',
|
|
143
143
|
},
|
|
144
144
|
green: {
|
|
145
|
-
'000': '#
|
|
146
|
-
100: '#
|
|
147
|
-
200: '#
|
|
148
|
-
300: '#
|
|
149
|
-
400: '#
|
|
150
|
-
500: '#
|
|
151
|
-
600: '#
|
|
152
|
-
700: '#
|
|
153
|
-
800: '#
|
|
154
|
-
900: '#
|
|
145
|
+
'000': '#1a2b20',
|
|
146
|
+
100: '#1d3b27',
|
|
147
|
+
200: '#255232',
|
|
148
|
+
300: '#256936',
|
|
149
|
+
400: '#2e853f',
|
|
150
|
+
500: '#38a04b',
|
|
151
|
+
600: '#4ab959',
|
|
152
|
+
700: '#65d372',
|
|
153
|
+
800: '#8ae592',
|
|
154
|
+
900: '#b9f0bd',
|
|
155
155
|
},
|
|
156
156
|
orange: {
|
|
157
|
-
'000': '#
|
|
158
|
-
100: '#
|
|
159
|
-
200: '#
|
|
160
|
-
300: '#
|
|
161
|
-
400: '#
|
|
162
|
-
500: '#
|
|
163
|
-
600: '#
|
|
164
|
-
700: '#
|
|
165
|
-
800: '#
|
|
166
|
-
900: '#
|
|
157
|
+
'000': '#2e1e17',
|
|
158
|
+
100: '#472a1d',
|
|
159
|
+
200: '#66361f',
|
|
160
|
+
300: '#8f4824',
|
|
161
|
+
400: '#ad5a2b',
|
|
162
|
+
500: '#d67233',
|
|
163
|
+
600: '#eb853d',
|
|
164
|
+
700: '#f5a35b',
|
|
165
|
+
800: '#fcc279',
|
|
166
|
+
900: '#fcd49f',
|
|
167
167
|
},
|
|
168
168
|
pink: {
|
|
169
|
-
'000': '#
|
|
170
|
-
100: '#
|
|
171
|
-
200: '#
|
|
172
|
-
300: '#
|
|
169
|
+
'000': '#3d182f',
|
|
170
|
+
100: '#571e40',
|
|
171
|
+
200: '#782a57',
|
|
172
|
+
300: '#9c356e',
|
|
173
173
|
400: '#bf4b8a',
|
|
174
|
-
500: '#
|
|
175
|
-
600: '#
|
|
174
|
+
500: '#de62a4',
|
|
175
|
+
600: '#f77ebd',
|
|
176
176
|
700: '#ff9bce',
|
|
177
177
|
800: '#ffbedd',
|
|
178
|
-
900: '#
|
|
178
|
+
900: '#ffcfe6',
|
|
179
179
|
},
|
|
180
180
|
primary: {
|
|
181
|
-
'000': '#
|
|
182
|
-
100: '#
|
|
183
|
-
200: '#
|
|
184
|
-
300: '#
|
|
185
|
-
400: '#
|
|
186
|
-
500: '#
|
|
187
|
-
600: '#
|
|
188
|
-
700: '#
|
|
181
|
+
'000': '#1b183d',
|
|
182
|
+
100: '#201d52',
|
|
183
|
+
200: '#2a2375',
|
|
184
|
+
300: '#342a9c',
|
|
185
|
+
400: '#4436c7',
|
|
186
|
+
500: '#5c49eb',
|
|
187
|
+
600: '#7766e8',
|
|
188
|
+
700: '#a498ed',
|
|
189
189
|
800: '#c9c2f2',
|
|
190
190
|
900: '#e4e0f5',
|
|
191
191
|
},
|
|
192
192
|
purple: {
|
|
193
|
-
'000': '#
|
|
194
|
-
100: '#
|
|
195
|
-
200: '#
|
|
193
|
+
'000': '#2b1d47',
|
|
194
|
+
100: '#3c2563',
|
|
195
|
+
200: '#553096',
|
|
196
196
|
300: '#6e40c9',
|
|
197
197
|
400: '#8957e5',
|
|
198
198
|
500: '#a371f7',
|
|
199
199
|
600: '#bc8cff',
|
|
200
200
|
700: '#d2a8ff',
|
|
201
201
|
800: '#e2c5ff',
|
|
202
|
-
900: '#
|
|
202
|
+
900: '#e9d6ff',
|
|
203
203
|
},
|
|
204
204
|
red: {
|
|
205
|
-
'000': '#
|
|
206
|
-
100: '#
|
|
207
|
-
200: '#
|
|
208
|
-
300: '#
|
|
209
|
-
400: '#
|
|
210
|
-
500: '#
|
|
211
|
-
600: '#
|
|
212
|
-
700: '#
|
|
213
|
-
800: '#
|
|
214
|
-
900: '#
|
|
205
|
+
'000': '#3d1515',
|
|
206
|
+
100: '#541c1f',
|
|
207
|
+
200: '#732225',
|
|
208
|
+
300: '#962926',
|
|
209
|
+
400: '#bd3939',
|
|
210
|
+
500: '#e0514a',
|
|
211
|
+
600: '#f76f65',
|
|
212
|
+
700: '#ff8d82',
|
|
213
|
+
800: '#ffb1a8',
|
|
214
|
+
900: '#ffd2cc',
|
|
215
215
|
},
|
|
216
216
|
yellow: {
|
|
217
|
-
'000': '#
|
|
218
|
-
100: '#
|
|
219
|
-
200: '#
|
|
220
|
-
300: '#
|
|
221
|
-
400: '#
|
|
222
|
-
500: '#
|
|
223
|
-
600: '#
|
|
224
|
-
700: '#
|
|
225
|
-
800: '#
|
|
226
|
-
900: '#
|
|
217
|
+
'000': '#30250a',
|
|
218
|
+
100: '#473510',
|
|
219
|
+
200: '#664b14',
|
|
220
|
+
300: '#856018',
|
|
221
|
+
400: '#a3751a',
|
|
222
|
+
500: '#bf8a1f',
|
|
223
|
+
600: '#d4a035',
|
|
224
|
+
700: '#e8bb51',
|
|
225
|
+
800: '#f2d06d',
|
|
226
|
+
900: '#fae296',
|
|
227
227
|
},
|
|
228
228
|
white: '#fff',
|
|
229
229
|
black: '#0d1117',
|
|
@@ -2,6 +2,7 @@ export declare const lightTheme: {
|
|
|
2
2
|
background: {
|
|
3
3
|
default: string;
|
|
4
4
|
canvas: string;
|
|
5
|
+
screen: string;
|
|
5
6
|
secondary: string;
|
|
6
7
|
tertiary: string;
|
|
7
8
|
quaternary: string;
|
|
@@ -75,11 +76,21 @@ export declare const lightTheme: {
|
|
|
75
76
|
accent: string;
|
|
76
77
|
emphasis: string;
|
|
77
78
|
};
|
|
79
|
+
project: {
|
|
80
|
+
blue: string;
|
|
81
|
+
green: string;
|
|
82
|
+
yellow: string;
|
|
83
|
+
orange: string;
|
|
84
|
+
red: string;
|
|
85
|
+
pink: string;
|
|
86
|
+
purple: string;
|
|
87
|
+
};
|
|
78
88
|
};
|
|
79
89
|
export declare const darkTheme: {
|
|
80
90
|
background: {
|
|
81
91
|
default: string;
|
|
82
92
|
canvas: string;
|
|
93
|
+
screen: string;
|
|
83
94
|
secondary: string;
|
|
84
95
|
tertiary: string;
|
|
85
96
|
quaternary: string;
|
|
@@ -153,4 +164,13 @@ export declare const darkTheme: {
|
|
|
153
164
|
accent: string;
|
|
154
165
|
emphasis: string;
|
|
155
166
|
};
|
|
167
|
+
project: {
|
|
168
|
+
blue: string;
|
|
169
|
+
green: string;
|
|
170
|
+
yellow: string;
|
|
171
|
+
orange: string;
|
|
172
|
+
red: string;
|
|
173
|
+
pink: string;
|
|
174
|
+
purple: string;
|
|
175
|
+
};
|
|
156
176
|
};
|
|
@@ -6,6 +6,7 @@ exports.lightTheme = {
|
|
|
6
6
|
background: {
|
|
7
7
|
default: palette_1.palette.light.white,
|
|
8
8
|
canvas: palette_1.palette.light.gray['000'],
|
|
9
|
+
screen: palette_1.palette.light.gray[100],
|
|
9
10
|
secondary: palette_1.palette.light.gray[100],
|
|
10
11
|
tertiary: palette_1.palette.light.gray[200],
|
|
11
12
|
quaternary: palette_1.palette.light.gray[300],
|
|
@@ -79,11 +80,21 @@ exports.lightTheme = {
|
|
|
79
80
|
accent: palette_1.palette.light.primary[300],
|
|
80
81
|
emphasis: palette_1.palette.light.yellow[300],
|
|
81
82
|
},
|
|
83
|
+
project: {
|
|
84
|
+
blue: '#6299d9',
|
|
85
|
+
green: '#54a767',
|
|
86
|
+
yellow: '#e5c145',
|
|
87
|
+
orange: '#d9864c',
|
|
88
|
+
red: '#d95757',
|
|
89
|
+
pink: '#d977b2',
|
|
90
|
+
purple: '#8a66cc',
|
|
91
|
+
},
|
|
82
92
|
};
|
|
83
93
|
exports.darkTheme = {
|
|
84
94
|
background: {
|
|
85
95
|
default: palette_1.palette.dark.gray['000'],
|
|
86
96
|
canvas: palette_1.palette.dark.gray[100],
|
|
97
|
+
screen: palette_1.palette.dark.gray['000'],
|
|
87
98
|
secondary: palette_1.palette.dark.gray[200],
|
|
88
99
|
tertiary: palette_1.palette.dark.gray[300],
|
|
89
100
|
quaternary: palette_1.palette.dark.gray[400],
|
|
@@ -157,4 +168,13 @@ exports.darkTheme = {
|
|
|
157
168
|
accent: palette_1.palette.dark.primary[700],
|
|
158
169
|
emphasis: palette_1.palette.dark.yellow[300],
|
|
159
170
|
},
|
|
171
|
+
project: {
|
|
172
|
+
blue: '#395a80',
|
|
173
|
+
green: '#32633d',
|
|
174
|
+
yellow: '#8a6319',
|
|
175
|
+
orange: '#8c5731',
|
|
176
|
+
red: '#8c3838',
|
|
177
|
+
pink: '#8a4c71',
|
|
178
|
+
purple: '#4e3973',
|
|
179
|
+
},
|
|
160
180
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/styleguide-native",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.2-alpha.1",
|
|
4
4
|
"description": "Foundational styles for Expo interfaces.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"react": "*",
|
|
34
34
|
"react-native-svg": "*"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "292345f8b3405ee9d690b1dcea1d31a9eb15fc2e"
|
|
37
37
|
}
|