@expo/styleguide-native 0.3.1 → 0.4.2-alpha.0
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/AndroidIcon.js +1 -1
- package/dist/src/icons/AppleAppStoreIcon.d.ts +4 -0
- package/dist/src/icons/AppleAppStoreIcon.js +35 -0
- package/dist/src/icons/AppleSimulatorIcon.d.ts +4 -0
- package/dist/src/icons/AppleSimulatorIcon.js +33 -0
- package/dist/src/icons/AtIcon.d.ts +4 -0
- package/dist/src/icons/AtIcon.js +29 -0
- package/dist/src/icons/CredentialIcon.d.ts +4 -0
- package/dist/src/icons/CredentialIcon.js +35 -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/GoogleAppStoreIcon.d.ts +4 -0
- package/dist/src/icons/GoogleAppStoreIcon.js +33 -0
- package/dist/src/icons/InvoicesIcon.d.ts +4 -0
- package/dist/src/icons/InvoicesIcon.js +34 -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/YoutubeIcon.js +1 -1
- 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;
|
|
@@ -24,6 +24,6 @@ const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
|
24
24
|
function AndroidIcon(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, { d: "M14.219 12.325a.766.766 0 010-1.532.765.765 0 010 1.532zm-8.438 0a.766.766 0 010-1.532.765.765 0 010 1.532zm8.712-4.613l1.525-2.651a.317.317 0 10-.55-.318l-1.544 2.684A9.393 9.393 0 0010 6.585a9.
|
|
27
|
+
React.createElement(react_native_svg_1.Path, { d: "M14.219 12.325a.766.766 0 010-1.532.765.765 0 010 1.532zm-8.438 0a.766.766 0 010-1.532.765.765 0 010 1.532zm8.712-4.613l1.525-2.651a.317.317 0 10-.55-.318l-1.544 2.684A9.393 9.393 0 0010 6.585a9.393 9.393 0 00-3.924.842L4.531 4.742a.317.317 0 10-.55.319l1.526 2.65c-2.62 1.43-4.412 4.091-4.674 7.235h18.334c-.263-3.144-2.055-5.805-4.674-7.234z", fill: color || "#000" })));
|
|
28
28
|
}
|
|
29
29
|
exports.default = AndroidIcon;
|
|
@@ -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 AppleAppStoreIcon(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.G, { clipPath: "url(#apple-app-store-icon_svg__apple-app-store-icon_svg__clip0)", fillRule: "evenodd", clipRule: "evenodd", fill: color || "#000" },
|
|
28
|
+
React.createElement(react_native_svg_1.Path, { d: "M13.03 3.202a1.6 1.6 0 10-2.77-1.604L2.779 14.522h3.698l6.554-11.32zm-7.498 12.95c-.681-.584-1.417-1.13-2.053-1.156-.928-.037-1.237.446-1.47.88l-.008-.01-.54.932a1.6 1.6 0 102.769 1.604l1.302-2.25z" }),
|
|
29
|
+
React.createElement(react_native_svg_1.Path, { d: "M9.718 11.322c.687.008 1.394.077 1.833.727.482.714.519 1.632.337 2.473H1.6a1.6 1.6 0 010-3.2h8.118zm3.959 3.2H18.4a1.6 1.6 0 000-3.2h-6.587l1.864 3.2z" }),
|
|
30
|
+
React.createElement(react_native_svg_1.Path, { d: "M7.047 3.202a1.6 1.6 0 012.77-1.604l2.053 3.547-1.901 3.102-2.922-5.045zm4.25 7.338l4.55 7.862a1.6 1.6 0 002.77-1.604L12.456 6.157c-.395.052-.75.283-1.025.831-.784 1.569-.433 2.899-.132 3.553h-.003z" })),
|
|
31
|
+
React.createElement(react_native_svg_1.Defs, null,
|
|
32
|
+
React.createElement(react_native_svg_1.ClipPath, { id: "apple-app-store-icon_svg__apple-app-store-icon_svg__clip0" },
|
|
33
|
+
React.createElement(react_native_svg_1.Path, { fill: "#fff", d: "M0 0h20v20H0z" })))));
|
|
34
|
+
}
|
|
35
|
+
exports.default = AppleAppStoreIcon;
|
|
@@ -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 AppleSimulatorIcon(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.Rect, { x: 3.75, y: 0.75, width: 12.5, height: 18.5, rx: 2.25, stroke: color || "#000", strokeWidth: 1.5 }),
|
|
28
|
+
React.createElement(react_native_svg_1.Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M11.212 7.28a.64.64 0 10-1.108-.64l-2.993 5.169h1.48l2.621-4.528zm-3 5.181c-.272-.234-.566-.453-.82-.463-.371-.014-.495.179-.588.352l-.004-.004-.216.373a.64.64 0 001.108.642l.52-.9z", fill: color || "#000" }),
|
|
29
|
+
React.createElement(react_native_svg_1.Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M9.887 10.529c.275.003.558.03.733.29.193.286.208.653.135.99H6.64a.64.64 0 110-1.28h3.247zm1.584 1.28h1.889a.64.64 0 100-1.28h-2.635l.746 1.28z", fill: color || "#000" }),
|
|
30
|
+
React.createElement(react_native_svg_1.Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M8.819 7.28a.64.64 0 111.108-.64l.821 1.418-.76 1.24-1.169-2.017zm1.7 2.936l1.82 3.145a.64.64 0 101.108-.642l-2.465-4.256c-.157.02-.3.113-.41.332-.313.628-.173 1.16-.052 1.421h-.002z", fill: color || "#000" }),
|
|
31
|
+
React.createElement(react_native_svg_1.Path, { d: "M7 1h6v1a1 1 0 01-1 1H8a1 1 0 01-1-1V1z", fill: color || "#000" })));
|
|
32
|
+
}
|
|
33
|
+
exports.default = AppleSimulatorIcon;
|
|
@@ -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 AtIcon(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.216 20c2.168 0 4.29-.51 5.24-1.05l-.752-2.205c-.814.334-2.564.775-4.313.775-4.96 0-7.652-2.631-7.667-7.438.015-4.35 2.495-7.629 7.553-7.629 3.658 0 7.058 1.75 7.05 6.526.008 2.974-.54 4.328-1.59 4.328-.524 0-.843-.396-.851-1.103V4.78h-2.38v.852h-.107c-.259-.669-1.871-1.3-3.583-1.042-2.03.297-4.22 1.963-4.236 5.492.015 3.582 2.054 5.415 4.457 5.545 1.727.098 3.278-.624 3.636-1.544h.091c.167 1.05.867 1.764 2.632 1.635 3.285-.183 4.54-2.83 4.533-6.564.007-5.408-3.567-9.15-9.614-9.15C3.774.004.024 4.058.016 10.174.024 16.386 3.743 20 10.216 20zm-.35-6.876c-1.985 0-2.654-1.521-2.662-3.133.008-1.735.958-2.868 2.647-2.868 1.924 0 2.502 1.02 2.51 2.845.023 2.069-.632 3.156-2.495 3.156z", fill: "#596068" })));
|
|
28
|
+
}
|
|
29
|
+
exports.default = AtIcon;
|
|
@@ -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,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,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 GoogleAppStoreIcon(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.G, { clipPath: "url(#google-app-store-icon_svg__google-app-store-icon_svg__clip0)" },
|
|
28
|
+
React.createElement(react_native_svg_1.Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M.707.502l9.67 9.451-9.679 9.511a.995.995 0 01-.107-.454V.972c0-.174.042-.333.116-.47zm.887-.531a.99.99 0 01.485.128l11.68 6.53-2.67 2.623L1.595-.029zm13.074 7.167l-2.863 2.813 3.013 2.946 3.54-1.942a1 1 0 00.007-1.75l-3.697-2.067zm-.766 6.261l-2.81-2.746-9.523 9.358a.993.993 0 00.503-.124l11.83-6.488z", fill: color || "#000" })),
|
|
29
|
+
React.createElement(react_native_svg_1.Defs, null,
|
|
30
|
+
React.createElement(react_native_svg_1.ClipPath, { id: "google-app-store-icon_svg__google-app-store-icon_svg__clip0" },
|
|
31
|
+
React.createElement(react_native_svg_1.Path, { fill: "#fff", d: "M0 0h20v20H0z" })))));
|
|
32
|
+
}
|
|
33
|
+
exports.default = GoogleAppStoreIcon;
|
|
@@ -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 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 21", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.G, { clipPath: "url(#invoices-icon_svg__invoices-icon_svg__clip0)", stroke: color || "#000" },
|
|
28
|
+
React.createElement(react_native_svg_1.Path, { d: "M10.45 17.97L10 17.7l-.45.27-2.088 1.253-2.57-1.285-.484-.242-.433.324-1.767 1.325H2A1.125 1.125 0 01.875 18.22v-16c0-.621.504-1.125 1.125-1.125h16c.621 0 1.125.504 1.125 1.125v16c0 .622-.504 1.125-1.125 1.125h-.208l-1.767-1.325-.433-.324-.483.242-2.57 1.285-2.089-1.253z", strokeWidth: 1.75 }),
|
|
29
|
+
React.createElement(react_native_svg_1.Path, { d: "M4.005 6.688h11.99M4.005 10.22h9.955", strokeWidth: 2 })),
|
|
30
|
+
React.createElement(react_native_svg_1.Defs, null,
|
|
31
|
+
React.createElement(react_native_svg_1.ClipPath, { id: "invoices-icon_svg__invoices-icon_svg__clip0" },
|
|
32
|
+
React.createElement(react_native_svg_1.Path, { fill: "#fff", transform: "translate(0 .22)", d: "M0 0h20v20H0z" })))));
|
|
33
|
+
}
|
|
34
|
+
exports.default = InvoicesIcon;
|
|
@@ -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: "#596068" }),
|
|
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: "#596068" })));
|
|
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;
|
|
@@ -24,6 +24,6 @@ const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
|
24
24
|
function YoutubeIcon(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 21 20", fill: "none" }, props),
|
|
27
|
-
React.createElement(react_native_svg_1.Path, { d: "M11.064 2.498h.111c1.028.004 6.234.042 7.638.42a2.51 2.51 0 011.768 1.774c.127.474.215 1.105.276 1.753l.012.13.027.325.01.13c.082 1.143.091 2.212.093 2.446v.094a39.
|
|
27
|
+
React.createElement(react_native_svg_1.Path, { d: "M11.064 2.498h.111c1.028.004 6.234.042 7.638.42a2.51 2.51 0 011.768 1.774c.127.474.215 1.105.276 1.753l.012.13.027.325.01.13c.082 1.143.091 2.212.093 2.446v.094a39.206 39.206 0 01-.103 2.576l-.01.13-.011.13c-.062.716-.155 1.426-.294 1.948a2.509 2.509 0 01-1.768 1.774c-1.45.39-6.962.418-7.726.42h-.176c-.387-.001-1.985-.009-3.66-.066l-.213-.008-.108-.004-.214-.008-.214-.01c-1.387-.06-2.709-.16-3.317-.324a2.509 2.509 0 01-1.768-1.774c-.14-.522-.232-1.232-.294-1.948l-.011-.13-.01-.13A39.25 39.25 0 01.998 9.6v-.153c.002-.268.012-1.198.08-2.223l.008-.128.005-.065.01-.13.026-.325.012-.13c.062-.648.15-1.279.277-1.753a2.51 2.51 0 011.768-1.774c.608-.164 1.93-.264 3.317-.325l.214-.009.214-.008.108-.004.214-.008c1.567-.054 3.068-.064 3.57-.065h.242zM8.999 6.512v6.022l5.196-3.01-5.196-3.012z", fill: color || "#000" })));
|
|
28
28
|
}
|
|
29
29
|
exports.default = YoutubeIcon;
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
+
export { default as ActivityIcon } from './ActivityIcon';
|
|
1
2
|
export { default as AddPhotoIcon } from './AddPhotoIcon';
|
|
2
3
|
export { default as AndroidIcon } from './AndroidIcon';
|
|
4
|
+
export { default as AppleAppStoreIcon } from './AppleAppStoreIcon';
|
|
3
5
|
export { default as AppleIcon } from './AppleIcon';
|
|
6
|
+
export { default as AppleSimulatorIcon } from './AppleSimulatorIcon';
|
|
4
7
|
export { default as ArrowLeftIcon } from './ArrowLeftIcon';
|
|
5
8
|
export { default as ArrowRightIcon } from './ArrowRightIcon';
|
|
9
|
+
export { default as AtIcon } from './AtIcon';
|
|
6
10
|
export { default as BadgeIcon } from './BadgeIcon';
|
|
7
11
|
export { default as BellIcon } from './BellIcon';
|
|
8
12
|
export { default as BranchIcon } from './BranchIcon';
|
|
@@ -14,16 +18,21 @@ export { default as CheckIcon } from './CheckIcon';
|
|
|
14
18
|
export { default as ChevronDownIcon } from './ChevronDownIcon';
|
|
15
19
|
export { default as CloudSlashIcon } from './CloudSlashIcon';
|
|
16
20
|
export { default as CommitIcon } from './CommitIcon';
|
|
21
|
+
export { default as CredentialIcon } from './CredentialIcon';
|
|
22
|
+
export { default as DeploymentsIcon } from './DeploymentsIcon';
|
|
17
23
|
export { default as DiscordIcon } from './DiscordIcon';
|
|
18
24
|
export { default as DiscourseIcon } from './DiscourseIcon';
|
|
19
25
|
export { default as DownloadIcon } from './DownloadIcon';
|
|
20
26
|
export { default as ErrorIcon } from './ErrorIcon';
|
|
21
27
|
export { default as FacebookIcon } from './FacebookIcon';
|
|
28
|
+
export { default as GeneralIcon } from './GeneralIcon';
|
|
22
29
|
export { default as GithubIcon } from './GithubIcon';
|
|
30
|
+
export { default as GoogleAppStoreIcon } from './GoogleAppStoreIcon';
|
|
23
31
|
export { default as HomeFilledIcon } from './HomeFilledIcon';
|
|
24
32
|
export { default as HomeIcon } from './HomeIcon';
|
|
25
33
|
export { default as InfoIcon } from './InfoIcon';
|
|
26
34
|
export { default as InstagramIcon } from './InstagramIcon';
|
|
35
|
+
export { default as InvoicesIcon } from './InvoicesIcon';
|
|
27
36
|
export { default as LockIcon } from './LockIcon';
|
|
28
37
|
export { default as LogoutMobileIcon } from './LogoutMobileIcon';
|
|
29
38
|
export { default as LogsIcon } from './LogsIcon';
|
|
@@ -32,6 +41,8 @@ export { default as MegaphoneIcon } from './MegaphoneIcon';
|
|
|
32
41
|
export { default as MessageIcon } from './MessageIcon';
|
|
33
42
|
export { default as OneTimePasswordIcon } from './OneTimePasswordIcon';
|
|
34
43
|
export { default as OpenInternalIcon } from './OpenInternalIcon';
|
|
44
|
+
export { default as PlansIcon } from './PlansIcon';
|
|
45
|
+
export { default as ProjectTransferIcon } from './ProjectTransferIcon';
|
|
35
46
|
export { default as PushToDeviceIcon } from './PushToDeviceIcon';
|
|
36
47
|
export { default as QrCodeIcon } from './QrCodeIcon';
|
|
37
48
|
export { default as QuestionIcon } from './QuestionIcon';
|
|
@@ -41,6 +52,7 @@ export { default as RolloutIcon } from './RolloutIcon';
|
|
|
41
52
|
export { default as RuntimeVersionIcon } from './RuntimeVersionIcon';
|
|
42
53
|
export { default as ScanIcon } from './ScanIcon';
|
|
43
54
|
export { default as SearchIcon } from './SearchIcon';
|
|
55
|
+
export { default as SecretsIcon } from './SecretsIcon';
|
|
44
56
|
export { default as SettingsFilledIcon } from './SettingsFilledIcon';
|
|
45
57
|
export { default as SettingsIcon } from './SettingsIcon';
|
|
46
58
|
export { default as SparklesIcon } from './SparklesIcon';
|
|
@@ -48,6 +60,7 @@ export { default as StoreIcon } from './StoreIcon';
|
|
|
48
60
|
export { default as ThemeAutoIcon } from './ThemeAutoIcon';
|
|
49
61
|
export { default as ThemeDarkIcon } from './ThemeDarkIcon';
|
|
50
62
|
export { default as ThemeLightIcon } from './ThemeLightIcon';
|
|
63
|
+
export { default as TokensIcon } from './TokensIcon';
|
|
51
64
|
export { default as TrashIcon } from './TrashIcon';
|
|
52
65
|
export { default as TriangleDownIcon } from './TriangleDownIcon';
|
|
53
66
|
export { default as TriangleRightIcon } from './TriangleRightIcon';
|
package/dist/src/icons/index.js
CHANGED
|
@@ -3,18 +3,26 @@ 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 = void 0;
|
|
6
|
+
exports.RefreshIcon = exports.QuestionMarkIcon = exports.QuestionIcon = exports.QrCodeIcon = exports.PushToDeviceIcon = exports.ProjectTransferIcon = exports.PlansIcon = 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.CredentialIcon = exports.CommitIcon = exports.CloudSlashIcon = exports.ChevronDownIcon = exports.CheckIcon = exports.ChannelIcon = exports.BuildProfileIcon = exports.BuildNumberIcon = exports.BuildIcon = exports.BranchIcon = exports.BellIcon = exports.BadgeIcon = exports.AtIcon = 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.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 = 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");
|
|
11
13
|
Object.defineProperty(exports, "AndroidIcon", { enumerable: true, get: function () { return __importDefault(AndroidIcon_1).default; } });
|
|
14
|
+
var AppleAppStoreIcon_1 = require("./AppleAppStoreIcon");
|
|
15
|
+
Object.defineProperty(exports, "AppleAppStoreIcon", { enumerable: true, get: function () { return __importDefault(AppleAppStoreIcon_1).default; } });
|
|
12
16
|
var AppleIcon_1 = require("./AppleIcon");
|
|
13
17
|
Object.defineProperty(exports, "AppleIcon", { enumerable: true, get: function () { return __importDefault(AppleIcon_1).default; } });
|
|
18
|
+
var AppleSimulatorIcon_1 = require("./AppleSimulatorIcon");
|
|
19
|
+
Object.defineProperty(exports, "AppleSimulatorIcon", { enumerable: true, get: function () { return __importDefault(AppleSimulatorIcon_1).default; } });
|
|
14
20
|
var ArrowLeftIcon_1 = require("./ArrowLeftIcon");
|
|
15
21
|
Object.defineProperty(exports, "ArrowLeftIcon", { enumerable: true, get: function () { return __importDefault(ArrowLeftIcon_1).default; } });
|
|
16
22
|
var ArrowRightIcon_1 = require("./ArrowRightIcon");
|
|
17
23
|
Object.defineProperty(exports, "ArrowRightIcon", { enumerable: true, get: function () { return __importDefault(ArrowRightIcon_1).default; } });
|
|
24
|
+
var AtIcon_1 = require("./AtIcon");
|
|
25
|
+
Object.defineProperty(exports, "AtIcon", { enumerable: true, get: function () { return __importDefault(AtIcon_1).default; } });
|
|
18
26
|
var BadgeIcon_1 = require("./BadgeIcon");
|
|
19
27
|
Object.defineProperty(exports, "BadgeIcon", { enumerable: true, get: function () { return __importDefault(BadgeIcon_1).default; } });
|
|
20
28
|
var BellIcon_1 = require("./BellIcon");
|
|
@@ -37,6 +45,10 @@ var CloudSlashIcon_1 = require("./CloudSlashIcon");
|
|
|
37
45
|
Object.defineProperty(exports, "CloudSlashIcon", { enumerable: true, get: function () { return __importDefault(CloudSlashIcon_1).default; } });
|
|
38
46
|
var CommitIcon_1 = require("./CommitIcon");
|
|
39
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 DeploymentsIcon_1 = require("./DeploymentsIcon");
|
|
51
|
+
Object.defineProperty(exports, "DeploymentsIcon", { enumerable: true, get: function () { return __importDefault(DeploymentsIcon_1).default; } });
|
|
40
52
|
var DiscordIcon_1 = require("./DiscordIcon");
|
|
41
53
|
Object.defineProperty(exports, "DiscordIcon", { enumerable: true, get: function () { return __importDefault(DiscordIcon_1).default; } });
|
|
42
54
|
var DiscourseIcon_1 = require("./DiscourseIcon");
|
|
@@ -47,8 +59,12 @@ var ErrorIcon_1 = require("./ErrorIcon");
|
|
|
47
59
|
Object.defineProperty(exports, "ErrorIcon", { enumerable: true, get: function () { return __importDefault(ErrorIcon_1).default; } });
|
|
48
60
|
var FacebookIcon_1 = require("./FacebookIcon");
|
|
49
61
|
Object.defineProperty(exports, "FacebookIcon", { enumerable: true, get: function () { return __importDefault(FacebookIcon_1).default; } });
|
|
62
|
+
var GeneralIcon_1 = require("./GeneralIcon");
|
|
63
|
+
Object.defineProperty(exports, "GeneralIcon", { enumerable: true, get: function () { return __importDefault(GeneralIcon_1).default; } });
|
|
50
64
|
var GithubIcon_1 = require("./GithubIcon");
|
|
51
65
|
Object.defineProperty(exports, "GithubIcon", { enumerable: true, get: function () { return __importDefault(GithubIcon_1).default; } });
|
|
66
|
+
var GoogleAppStoreIcon_1 = require("./GoogleAppStoreIcon");
|
|
67
|
+
Object.defineProperty(exports, "GoogleAppStoreIcon", { enumerable: true, get: function () { return __importDefault(GoogleAppStoreIcon_1).default; } });
|
|
52
68
|
var HomeFilledIcon_1 = require("./HomeFilledIcon");
|
|
53
69
|
Object.defineProperty(exports, "HomeFilledIcon", { enumerable: true, get: function () { return __importDefault(HomeFilledIcon_1).default; } });
|
|
54
70
|
var HomeIcon_1 = require("./HomeIcon");
|
|
@@ -57,6 +73,8 @@ var InfoIcon_1 = require("./InfoIcon");
|
|
|
57
73
|
Object.defineProperty(exports, "InfoIcon", { enumerable: true, get: function () { return __importDefault(InfoIcon_1).default; } });
|
|
58
74
|
var InstagramIcon_1 = require("./InstagramIcon");
|
|
59
75
|
Object.defineProperty(exports, "InstagramIcon", { enumerable: true, get: function () { return __importDefault(InstagramIcon_1).default; } });
|
|
76
|
+
var InvoicesIcon_1 = require("./InvoicesIcon");
|
|
77
|
+
Object.defineProperty(exports, "InvoicesIcon", { enumerable: true, get: function () { return __importDefault(InvoicesIcon_1).default; } });
|
|
60
78
|
var LockIcon_1 = require("./LockIcon");
|
|
61
79
|
Object.defineProperty(exports, "LockIcon", { enumerable: true, get: function () { return __importDefault(LockIcon_1).default; } });
|
|
62
80
|
var LogoutMobileIcon_1 = require("./LogoutMobileIcon");
|
|
@@ -73,6 +91,10 @@ var OneTimePasswordIcon_1 = require("./OneTimePasswordIcon");
|
|
|
73
91
|
Object.defineProperty(exports, "OneTimePasswordIcon", { enumerable: true, get: function () { return __importDefault(OneTimePasswordIcon_1).default; } });
|
|
74
92
|
var OpenInternalIcon_1 = require("./OpenInternalIcon");
|
|
75
93
|
Object.defineProperty(exports, "OpenInternalIcon", { enumerable: true, get: function () { return __importDefault(OpenInternalIcon_1).default; } });
|
|
94
|
+
var PlansIcon_1 = require("./PlansIcon");
|
|
95
|
+
Object.defineProperty(exports, "PlansIcon", { enumerable: true, get: function () { return __importDefault(PlansIcon_1).default; } });
|
|
96
|
+
var ProjectTransferIcon_1 = require("./ProjectTransferIcon");
|
|
97
|
+
Object.defineProperty(exports, "ProjectTransferIcon", { enumerable: true, get: function () { return __importDefault(ProjectTransferIcon_1).default; } });
|
|
76
98
|
var PushToDeviceIcon_1 = require("./PushToDeviceIcon");
|
|
77
99
|
Object.defineProperty(exports, "PushToDeviceIcon", { enumerable: true, get: function () { return __importDefault(PushToDeviceIcon_1).default; } });
|
|
78
100
|
var QrCodeIcon_1 = require("./QrCodeIcon");
|
|
@@ -91,6 +113,8 @@ var ScanIcon_1 = require("./ScanIcon");
|
|
|
91
113
|
Object.defineProperty(exports, "ScanIcon", { enumerable: true, get: function () { return __importDefault(ScanIcon_1).default; } });
|
|
92
114
|
var SearchIcon_1 = require("./SearchIcon");
|
|
93
115
|
Object.defineProperty(exports, "SearchIcon", { enumerable: true, get: function () { return __importDefault(SearchIcon_1).default; } });
|
|
116
|
+
var SecretsIcon_1 = require("./SecretsIcon");
|
|
117
|
+
Object.defineProperty(exports, "SecretsIcon", { enumerable: true, get: function () { return __importDefault(SecretsIcon_1).default; } });
|
|
94
118
|
var SettingsFilledIcon_1 = require("./SettingsFilledIcon");
|
|
95
119
|
Object.defineProperty(exports, "SettingsFilledIcon", { enumerable: true, get: function () { return __importDefault(SettingsFilledIcon_1).default; } });
|
|
96
120
|
var SettingsIcon_1 = require("./SettingsIcon");
|
|
@@ -105,6 +129,8 @@ var ThemeDarkIcon_1 = require("./ThemeDarkIcon");
|
|
|
105
129
|
Object.defineProperty(exports, "ThemeDarkIcon", { enumerable: true, get: function () { return __importDefault(ThemeDarkIcon_1).default; } });
|
|
106
130
|
var ThemeLightIcon_1 = require("./ThemeLightIcon");
|
|
107
131
|
Object.defineProperty(exports, "ThemeLightIcon", { enumerable: true, get: function () { return __importDefault(ThemeLightIcon_1).default; } });
|
|
132
|
+
var TokensIcon_1 = require("./TokensIcon");
|
|
133
|
+
Object.defineProperty(exports, "TokensIcon", { enumerable: true, get: function () { return __importDefault(TokensIcon_1).default; } });
|
|
108
134
|
var TrashIcon_1 = require("./TrashIcon");
|
|
109
135
|
Object.defineProperty(exports, "TrashIcon", { enumerable: true, get: function () { return __importDefault(TrashIcon_1).default; } });
|
|
110
136
|
var TriangleDownIcon_1 = require("./TriangleDownIcon");
|
|
@@ -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.0",
|
|
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": "c90b726d5511e0f6600290c63c85420b7ed629c2"
|
|
37
37
|
}
|