@eleventheye/asui 2.1.4 → 2.1.7
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/astextfield/ASTextField.d.ts.map +1 -1
- package/dist/astextfield/ASTextField.js +11 -2
- package/dist/astextfield/ASTextField.types.d.ts +1 -0
- package/dist/astextfield/ASTextField.types.d.ts.map +1 -1
- package/dist/astextfield/styles.js +1 -1
- package/dist/icons/ASIcon.d.ts.map +1 -1
- package/dist/icons/ASIcon.js +3 -3
- package/dist/icons/AddItemIcon.d.ts.map +1 -1
- package/dist/icons/AddItemIcon.js +1 -1
- package/dist/icons/AddUserIcon.d.ts.map +1 -1
- package/dist/icons/AddUserIcon.js +1 -1
- package/dist/icons/CheckIcon.d.ts.map +1 -1
- package/dist/icons/CheckIcon.js +1 -1
- package/dist/icons/CloseIcon.d.ts.map +1 -1
- package/dist/icons/CloseIcon.js +1 -1
- package/dist/icons/DeleteIcon.d.ts.map +1 -1
- package/dist/icons/DeleteIcon.js +2 -2
- package/dist/icons/EleventheyeIcon.d.ts.map +1 -1
- package/dist/icons/EleventheyeIcon.js +1 -1
- package/dist/icons/EmailIcon.d.ts.map +1 -1
- package/dist/icons/EmailIcon.js +1 -1
- package/dist/icons/ErrorIcon.d.ts +5 -0
- package/dist/icons/ErrorIcon.d.ts.map +1 -0
- package/dist/icons/ErrorIcon.js +13 -0
- package/dist/icons/EyeIcon.d.ts.map +1 -1
- package/dist/icons/EyeIcon.js +1 -1
- package/dist/icons/EyeSlashIcon.d.ts.map +1 -1
- package/dist/icons/EyeSlashIcon.js +1 -1
- package/dist/icons/FootballIcon.d.ts.map +1 -1
- package/dist/icons/FootballIcon.js +1 -1
- package/dist/icons/GamesIcon.d.ts.map +1 -1
- package/dist/icons/GamesIcon.js +1 -1
- package/dist/icons/GearUserIcon.d.ts.map +1 -1
- package/dist/icons/GearUserIcon.js +1 -1
- package/dist/icons/HexagonIcon.d.ts.map +1 -1
- package/dist/icons/HexagonIcon.js +1 -1
- package/dist/icons/HomeIcon.d.ts.map +1 -1
- package/dist/icons/HomeIcon.js +1 -1
- package/dist/icons/LockIcon.d.ts.map +1 -1
- package/dist/icons/LockIcon.js +1 -1
- package/dist/icons/PenIcon.d.ts.map +1 -1
- package/dist/icons/PenIcon.js +1 -1
- package/dist/icons/PodiumIcon.d.ts.map +1 -1
- package/dist/icons/PodiumIcon.js +1 -1
- package/dist/icons/RulerIcon.d.ts.map +1 -1
- package/dist/icons/RulerIcon.js +1 -1
- package/dist/icons/SaveIcon.d.ts.map +1 -1
- package/dist/icons/SaveIcon.js +1 -1
- package/dist/icons/SearchIcon.d.ts.map +1 -1
- package/dist/icons/SearchIcon.js +1 -1
- package/dist/icons/StatsIcon.d.ts.map +1 -1
- package/dist/icons/StatsIcon.js +1 -1
- package/dist/icons/TimeLapseIcon.d.ts.map +1 -1
- package/dist/icons/TimeLapseIcon.js +1 -1
- package/dist/icons/UnlockIcon.d.ts.map +1 -1
- package/dist/icons/UnlockIcon.js +1 -1
- package/dist/icons/UserSettingsIcon.d.ts.map +1 -1
- package/dist/icons/UserSettingsIcon.js +1 -1
- package/dist/icons/index.d.ts +2 -0
- package/dist/icons/index.d.ts.map +1 -1
- package/dist/icons/index.js +4 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ASTextField.d.ts","sourceRoot":"","sources":["../../src/astextfield/ASTextField.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"ASTextField.d.ts","sourceRoot":"","sources":["../../src/astextfield/ASTextField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAyD,MAAM,OAAO,CAAC;AAK9E,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAUvD,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAqI3C,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -7,7 +7,8 @@ const ASUI_types_1 = require("../apptypes/ASUI.types");
|
|
|
7
7
|
const astheme_1 = tslib_1.__importDefault(require("../astheme"));
|
|
8
8
|
const icons_1 = require("../icons");
|
|
9
9
|
const styles_1 = require("./styles");
|
|
10
|
-
const ASTextField = ({ className = '', theme = astheme_1.default, value = '', onChange = () => undefined, size = ASUI_types_1.ASComponentSize.Medium, type = 'text', showClearButton = false, showSearchIcon = false, ...props }) => {
|
|
10
|
+
const ASTextField = ({ className = '', theme = astheme_1.default, value = '', onChange = () => undefined, size = ASUI_types_1.ASComponentSize.Medium, type = 'text', showClearButton = false, showSearchIcon = false, disableAutofill = false, ...props }) => {
|
|
11
|
+
const passwordTypeRef = (0, react_1.useRef)(false);
|
|
11
12
|
const genericId = (0, react_1.useId)();
|
|
12
13
|
const textFieldId = props.id || genericId;
|
|
13
14
|
const [valueString, setValueString] = (0, react_1.useState)(value);
|
|
@@ -18,9 +19,16 @@ const ASTextField = ({ className = '', theme = astheme_1.default, value = '', on
|
|
|
18
19
|
const [leftIconCls, setLeftIconCls] = (0, react_1.useState)('LeftIconOff');
|
|
19
20
|
const [passwordCls, setPasswordCls] = (0, react_1.useState)('');
|
|
20
21
|
const [showType, setShowType] = (0, react_1.useState)(type);
|
|
22
|
+
(0, react_1.useEffect)(() => {
|
|
23
|
+
setShowType(type);
|
|
24
|
+
}, [type]);
|
|
21
25
|
(0, react_1.useEffect)(() => {
|
|
22
26
|
let searchIcon = showSearchIcon;
|
|
23
27
|
let clearIcon = showClearButton;
|
|
28
|
+
if (passwordTypeRef.current && type !== 'text' && type !== 'password') {
|
|
29
|
+
passwordTypeRef.current = false;
|
|
30
|
+
setPasswordIconVisible(false);
|
|
31
|
+
}
|
|
24
32
|
if (type === 'search') {
|
|
25
33
|
searchIcon = true;
|
|
26
34
|
clearIcon = true;
|
|
@@ -29,6 +37,7 @@ const ASTextField = ({ className = '', theme = astheme_1.default, value = '', on
|
|
|
29
37
|
clearIcon = true;
|
|
30
38
|
}
|
|
31
39
|
if (type === 'password') {
|
|
40
|
+
passwordTypeRef.current = true;
|
|
32
41
|
setPasswordIconVisible(true);
|
|
33
42
|
}
|
|
34
43
|
setSearchIconVisible(searchIcon);
|
|
@@ -63,6 +72,6 @@ const ASTextField = ({ className = '', theme = astheme_1.default, value = '', on
|
|
|
63
72
|
setShowType(showType === 'password' ? 'text' : 'password');
|
|
64
73
|
};
|
|
65
74
|
const baseCls = `"ASTextFieldInputContainer" ${size} ${leftIconCls} ${rightIconCls} ${passwordCls} ${className}`;
|
|
66
|
-
return ((0, jsx_runtime_1.jsxs)(styles_1.ASTextFieldInputContainer, { theme: theme, className: baseCls, style: props.style, children: [searchIconVisible && ((0, jsx_runtime_1.jsx)(styles_1.ASTextFieldSearchIcon, { theme: theme, className: "ASTextFieldSearchIcon", children: (0, jsx_runtime_1.jsx)(icons_1.SearchIcon, { color: "#333333", fillColor: "#333333", size: 20 }) })), (0, jsx_runtime_1.jsx)(styles_1.ASTextFieldInput, { theme: theme, id: textFieldId, className: "ASTextFieldInput", type: showType, value: valueString, onChange: onValueChange, onFocus: onInputFieldFocus, ...props }), clearIconVisible && ((0, jsx_runtime_1.jsx)(styles_1.ASTextFieldClickIcon, { theme: theme, className: "ASTextFieldClearIcon", onClick: clearValue, children: (0, jsx_runtime_1.jsx)(icons_1.CloseIcon, { color: "transparent", fillColor: "#333333", circleStrokeColor: "#666666", circleStrokeWidth: 0.5, size: 20 }) })), passwordIconVisible && ((0, jsx_runtime_1.jsxs)(styles_1.ASTextFieldClickIcon, { theme: theme, className: "ASTextFieldPasswordIcon", onClick: onPasswordShowHide, children: [showType === 'password' && (0, jsx_runtime_1.jsx)(styles_1.ScaledEyeIcon, { color: "#333333", fillColor: "#333333", size: 20 }), showType === 'text' && (0, jsx_runtime_1.jsx)(styles_1.ScaledSlashedEyeIcon, { color: "#333333", fillColor: "#333333", size: 20 })] }))] }));
|
|
75
|
+
return ((0, jsx_runtime_1.jsxs)(styles_1.ASTextFieldInputContainer, { theme: theme, className: baseCls, style: props.style, children: [searchIconVisible && ((0, jsx_runtime_1.jsx)(styles_1.ASTextFieldSearchIcon, { theme: theme, className: "ASTextFieldSearchIcon", children: (0, jsx_runtime_1.jsx)(icons_1.SearchIcon, { color: "#333333", fillColor: "#333333", size: 20 }) })), (0, jsx_runtime_1.jsx)(styles_1.ASTextFieldInput, { theme: theme, autoComplete: passwordIconVisible ? 'new-password' : disableAutofill ? 'off' : 'on', "aria-autocomplete": passwordIconVisible ? 'none' : 'list', autoCorrect: passwordIconVisible ? 'off' : 'on', autoCapitalize: 'none', spellCheck: passwordIconVisible ? 'false' : 'true', autoFocus: true, id: textFieldId, className: "ASTextFieldInput", type: showType, value: valueString, onChange: onValueChange, onFocus: onInputFieldFocus, ...props }), clearIconVisible && ((0, jsx_runtime_1.jsx)(styles_1.ASTextFieldClickIcon, { theme: theme, className: "ASTextFieldClearIcon", onClick: clearValue, children: (0, jsx_runtime_1.jsx)(icons_1.CloseIcon, { color: "transparent", fillColor: "#333333", circleStrokeColor: "#666666", circleStrokeWidth: 0.5, size: 20 }) })), passwordIconVisible && ((0, jsx_runtime_1.jsxs)(styles_1.ASTextFieldClickIcon, { theme: theme, className: "ASTextFieldPasswordIcon", onClick: onPasswordShowHide, children: [showType === 'password' && (0, jsx_runtime_1.jsx)(styles_1.ScaledEyeIcon, { color: "#333333", fillColor: "#333333", size: 20 }), showType === 'text' && (0, jsx_runtime_1.jsx)(styles_1.ScaledSlashedEyeIcon, { color: "#333333", fillColor: "#333333", size: 20 })] }))] }));
|
|
67
76
|
};
|
|
68
77
|
exports.default = ASTextField;
|
|
@@ -7,6 +7,7 @@ export type ASTextFieldProps = {
|
|
|
7
7
|
onChange?: (value: string) => void;
|
|
8
8
|
size?: ASComponentSize;
|
|
9
9
|
showClearButton?: boolean;
|
|
10
|
+
disableAutofill?: boolean;
|
|
10
11
|
showSearchIcon?: boolean;
|
|
11
12
|
} & Pick<React.HTMLProps<HTMLInputElement>, 'style' | 'type' | 'placeholder' | 'id' | 'onBlur' | 'onFocus'>;
|
|
12
13
|
//# sourceMappingURL=ASTextField.types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ASTextField.types.d.ts","sourceRoot":"","sources":["../../src/astextfield/ASTextField.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,cAAc,MAAM,YAAY,CAAC;AAExC,MAAM,MAAM,gBAAgB,GAAG;IAK7B,SAAS,CAAC,EAAE,MAAM,CAAC;IAMnB,KAAK,CAAC,EAAE,OAAO,cAAc,CAAC;IAM9B,KAAK,CAAC,EAAE,MAAM,CAAC;IAMf,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IASnC,IAAI,CAAC,EAAE,eAAe,CAAC;IAOvB,eAAe,CAAC,EAAE,OAAO,CAAC;IAQ1B,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B,GAAG,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,aAAa,GAAG,IAAI,GAAG,QAAQ,GAAG,SAAS,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"ASTextField.types.d.ts","sourceRoot":"","sources":["../../src/astextfield/ASTextField.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,cAAc,MAAM,YAAY,CAAC;AAExC,MAAM,MAAM,gBAAgB,GAAG;IAK7B,SAAS,CAAC,EAAE,MAAM,CAAC;IAMnB,KAAK,CAAC,EAAE,OAAO,cAAc,CAAC;IAM9B,KAAK,CAAC,EAAE,MAAM,CAAC;IAMf,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IASnC,IAAI,CAAC,EAAE,eAAe,CAAC;IAOvB,eAAe,CAAC,EAAE,OAAO,CAAC;IAO1B,eAAe,CAAC,EAAE,OAAO,CAAC;IAQ1B,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B,GAAG,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,aAAa,GAAG,IAAI,GAAG,QAAQ,GAAG,SAAS,CAAC,CAAC"}
|
|
@@ -98,7 +98,7 @@ exports.ASTextFieldInputContainer = styled_components_1.default.div `
|
|
|
98
98
|
|
|
99
99
|
// Chrome autofill update
|
|
100
100
|
// input:-webkit-autofill,
|
|
101
|
-
input:-webkit-autofill:hover,
|
|
101
|
+
* input:-webkit-autofill:hover,
|
|
102
102
|
input:-webkit-autofill:focus,
|
|
103
103
|
textarea:-webkit-autofill,
|
|
104
104
|
textarea:-webkit-autofill:hover,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ASIcon.d.ts","sourceRoot":"","sources":["../../src/icons/ASIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAwB1C,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,SAAS,CAAC,
|
|
1
|
+
{"version":3,"file":"ASIcon.d.ts","sourceRoot":"","sources":["../../src/icons/ASIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAwB1C,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAsBlD,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
package/dist/icons/ASIcon.js
CHANGED
|
@@ -5,9 +5,9 @@ const jsx_runtime_1 = require("react/jsx-runtime");
|
|
|
5
5
|
const react_1 = tslib_1.__importDefault(require("react"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
7
|
const CircleSvg = ({ size = 24, circleStrokeWidth = 1.5, circleFillColor = 'transparent', circleStrokeColor = '#fffff0', circleFillOpacity = 1, withCircle = false, }) => ((0, jsx_runtime_1.jsx)(styles_1.IconCircle, { width: size, height: size, viewBox: "0 0 24 24", fill: "transparent", xmlns: "http://www.w3.org/2000/svg", children: (0, jsx_runtime_1.jsx)("circle", { fill: withCircle ? circleFillColor : 'none', fillOpacity: circleFillOpacity, cx: "12", cy: "12", r: "10.5", stroke: withCircle ? circleStrokeColor : 'transparent', strokeWidth: `${circleStrokeWidth}px` }) }));
|
|
8
|
-
const ASIcon = ({ className = '', size = 24, color = '#fffff0', fillColor = 'transparent', fillOpacity = 1, circleStrokeColor = '#fffff0', withCircle = false, children, ...props }) => {
|
|
9
|
-
return ((0, jsx_runtime_1.jsxs)(styles_1.IconWrapper, { className: className, children: [(0, jsx_runtime_1.jsx)(CircleSvg, { size: size, circleStrokeColor, withCircle, ...props }), react_1.default.Children.map(children, (child) => react_1.default.isValidElement(child)
|
|
10
|
-
? react_1.default.cloneElement(child, { size, color, fillColor, withCircle, fillOpacity, ...props })
|
|
8
|
+
const ASIcon = ({ className = '', size = 24, color = '#fffff0', fillColor = 'transparent', fillOpacity = 1, circleStrokeColor = '#fffff0', withCircle = false, style, children, ...props }) => {
|
|
9
|
+
return ((0, jsx_runtime_1.jsxs)(styles_1.IconWrapper, { className: className, style: props.style, children: [(0, jsx_runtime_1.jsx)(CircleSvg, { size: size, circleStrokeColor, withCircle, ...props }), react_1.default.Children.map(children, (child) => react_1.default.isValidElement(child)
|
|
10
|
+
? react_1.default.cloneElement(child, { size, color, fillColor, withCircle, fillOpacity, style, ...props })
|
|
11
11
|
: child)] }));
|
|
12
12
|
};
|
|
13
13
|
exports.default = ASIcon;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AddItemIcon.d.ts","sourceRoot":"","sources":["../../src/icons/AddItemIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"AddItemIcon.d.ts","sourceRoot":"","sources":["../../src/icons/AddItemIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAuB1C,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMpC,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const AddItemSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M9.8 18.7V16.5H7.7V14.3h2.2V12.1h2.2v2.2h2.2v2.2H12.1v2.2H9.8ZM5.5 1.1c-1.8 0-3.3 1.5-3.3 3.3V19.8c0 1.8 1.5 3.3 3.3 3.3h13.2c1.8 0 3.3-1.5 3.3-3.3V8.8c0-4.3-3.4-7.7-7.7-7.7H5.5Zm0 2.2h7.7V8.8h6.6v11c0 .6-.5 1.1-1.1 1.1H5.5c-.6 0-1.1-.5-1.1-1.1V4.4c0-.6.5-1.1 1.1-1.1Zm9.9.1c1.8.4 3.2 1.6 3.9 3.2H15.4V3.4Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity }) }));
|
|
7
|
+
const AddItemSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M9.8 18.7V16.5H7.7V14.3h2.2V12.1h2.2v2.2h2.2v2.2H12.1v2.2H9.8ZM5.5 1.1c-1.8 0-3.3 1.5-3.3 3.3V19.8c0 1.8 1.5 3.3 3.3 3.3h13.2c1.8 0 3.3-1.5 3.3-3.3V8.8c0-4.3-3.4-7.7-7.7-7.7H5.5Zm0 2.2h7.7V8.8h6.6v11c0 .6-.5 1.1-1.1 1.1H5.5c-.6 0-1.1-.5-1.1-1.1V4.4c0-.6.5-1.1 1.1-1.1Zm9.9.1c1.8.4 3.2 1.6 3.9 3.2H15.4V3.4Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity }) }));
|
|
8
8
|
const AddItemIcon = ({ ...props }) => {
|
|
9
9
|
return ((0, jsx_runtime_1.jsx)(ASIcon_1.default, { ...props, children: (0, jsx_runtime_1.jsx)(AddItemSvg, {}) }));
|
|
10
10
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AddUserIcon.d.ts","sourceRoot":"","sources":["../../src/icons/AddUserIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"AddUserIcon.d.ts","sourceRoot":"","sources":["../../src/icons/AddUserIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAwB1C,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMpC,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const AddUseSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M7.8 10.9c2.4 0 4.3-1.9 4.3-4.3s-1.9-4.3-4.3-4.3-4.3 1.9-4.3 4.3 1.9 4.3 4.3 4.3Zm0-2.2c1.2 0 2.2-1 2.2-2.2s-1-2.2-2.2-2.2-2.2 1-2.2 2.2 1 2.2 2.2 2.2Zm3.2 5.4c.6 0 1.1.5 1.1 1.1v6.5h2.2v-6.5c0-1.8-1.5-3.2-3.2-3.2H4.6c-1.8 0-3.2 1.4-3.2 3.2v6.5H3.5v-6.5c0-.6.5-1.1 1.1-1.1h6.5Zm7.6-7.5h2.2v2.2H23V11H20.8v2.2H18.6V11H16.5V8.7h2.2V6.6Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
7
|
+
const AddUseSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M7.8 10.9c2.4 0 4.3-1.9 4.3-4.3s-1.9-4.3-4.3-4.3-4.3 1.9-4.3 4.3 1.9 4.3 4.3 4.3Zm0-2.2c1.2 0 2.2-1 2.2-2.2s-1-2.2-2.2-2.2-2.2 1-2.2 2.2 1 2.2 2.2 2.2Zm3.2 5.4c.6 0 1.1.5 1.1 1.1v6.5h2.2v-6.5c0-1.8-1.5-3.2-3.2-3.2H4.6c-1.8 0-3.2 1.4-3.2 3.2v6.5H3.5v-6.5c0-.6.5-1.1 1.1-1.1h6.5Zm7.6-7.5h2.2v2.2H23V11H20.8v2.2H18.6V11H16.5V8.7h2.2V6.6Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
8
8
|
const AddUserIcon = ({ ...props }) => {
|
|
9
9
|
return ((0, jsx_runtime_1.jsx)(ASIcon_1.default, { ...props, children: (0, jsx_runtime_1.jsx)(AddUseSvg, {}) }));
|
|
10
10
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CheckIcon.d.ts","sourceRoot":"","sources":["../../src/icons/CheckIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"CheckIcon.d.ts","sourceRoot":"","sources":["../../src/icons/CheckIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAuB1C,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMlC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
package/dist/icons/CheckIcon.js
CHANGED
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const CheckIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M9.3 20.6 1.5 12.9a1.9 1.8 0 012.6-2.6l5.2 5.2L19.9 5a1.9 1.8 0 012.6 2.6L9.3 20.6Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity }) }));
|
|
7
|
+
const CheckIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M9.3 20.6 1.5 12.9a1.9 1.8 0 012.6-2.6l5.2 5.2L19.9 5a1.9 1.8 0 012.6 2.6L9.3 20.6Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity }) }));
|
|
8
8
|
const CheckIcon = ({ ...props }) => {
|
|
9
9
|
return ((0, jsx_runtime_1.jsx)(ASIcon_1.default, { ...props, children: (0, jsx_runtime_1.jsx)(CheckIconSvg, {}) }));
|
|
10
10
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CloseIcon.d.ts","sourceRoot":"","sources":["../../src/icons/CloseIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"CloseIcon.d.ts","sourceRoot":"","sources":["../../src/icons/CloseIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAuB1C,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMlC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
package/dist/icons/CloseIcon.js
CHANGED
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const CloseIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.01, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M11.9 14.24l7.84 7.84q.44.44 1.12.44t1.12-.44.44-1.12-.44-1.12L14.14 12l7.84-7.84q.44-.44.44-1.12t-.44-1.12-1.12-.44-1.12.44L11.9 9.76 4.06 1.92q-.44-.44-1.12-.44t-1.12.44-.44 1.12.44 1.12L9.66 12 1.82 19.84q-.44.44-.44 1.12t.44 1.12 1.12.44 1.12-.44l7.84-7.84Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity }) }));
|
|
7
|
+
const CloseIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.01, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M11.9 14.24l7.84 7.84q.44.44 1.12.44t1.12-.44.44-1.12-.44-1.12L14.14 12l7.84-7.84q.44-.44.44-1.12t-.44-1.12-1.12-.44-1.12.44L11.9 9.76 4.06 1.92q-.44-.44-1.12-.44t-1.12.44-.44 1.12.44 1.12L9.66 12 1.82 19.84q-.44.44-.44 1.12t.44 1.12 1.12.44 1.12-.44l7.84-7.84Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity }) }));
|
|
8
8
|
const CloseIcon = ({ ...props }) => {
|
|
9
9
|
return ((0, jsx_runtime_1.jsx)(ASIcon_1.default, { ...props, children: (0, jsx_runtime_1.jsx)(CloseIconSvg, {}) }));
|
|
10
10
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DeleteIcon.d.ts","sourceRoot":"","sources":["../../src/icons/DeleteIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"DeleteIcon.d.ts","sourceRoot":"","sources":["../../src/icons/DeleteIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAiC1C,QAAA,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMnC,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/dist/icons/DeleteIcon.js
CHANGED
|
@@ -4,8 +4,8 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const DeleteIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
8
|
-
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size,
|
|
7
|
+
const DeleteIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
|
+
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { xmlns: "http://www.w3.org/2000/svg", "$withCircle": withCircle, width: size, height: size, viewBox: "0 0 24 24", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M17.8 4.6V3.5c0-1.3-1-2.3-2.3-2.3H8.6c-1.3 0-2.3 1-2.3 2.3v1.1H2.8c-.7 0-1.2.5-1.2 1.1s.5 1.1 1.2 1.1H4v12.6c0 2 1.5 3.4 3.5 3.4h9.2c2 0 3.5-1.5 3.5-3.4V6.9h1.2c.7 0 1.2-.5 1.2-1.1s-.5-1.1-1.2-1.1H17.8Zm-2.3-1.1H8.6v1.1h6.9V3.5Zm2.3 3.4H6.3v12.6c0 .7.5 1.1 1.2 1.1h9.2c.7 0 1.2-.5 1.2-1.1V6.9ZM8.6 9.2h2.3v9.2H8.6V9.2Zm4.6 0h2.3v9.2H13.2V9.2Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const DeleteIcon = ({ ...props }) => {
|
|
11
11
|
return ((0, jsx_runtime_1.jsx)(ASIcon_1.default, { ...props, children: (0, jsx_runtime_1.jsx)(DeleteIconSvg, {}) }));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EleventheyeIcon.d.ts","sourceRoot":"","sources":["../../src/icons/EleventheyeIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"EleventheyeIcon.d.ts","sourceRoot":"","sources":["../../src/icons/EleventheyeIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAyB1C,QAAA,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMxC,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const EleventheyeIconSvg = ({ size = 24, color = '#FFFFFF', strokeWidth = 0.1, fillColor = '#0E82C9', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const EleventheyeIconSvg = ({ size = 24, color = '#FFFFFF', strokeWidth = 0.1, fillColor = '#0E82C9', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M12.91 22.8c-.16-.05-1.56-.94-3.14-1.96-1.56-1.02-2.91-1.88-2.99-1.91s-.54.21-1.1.57c-2.21 1.45-3.68 1.32-4.46-.38-.6-1.32-.09-2.31 1.85-3.57l1.23-.8.03-4.06s-.02-3.68.1-4.05c.12-.38.13-.32.31-.58.19-.27.44-.75 4.18-2.91 5.02-2.89 4.09-2.89 9.26.03 4.45 2.5 4.57 2.62 4.57 3.97 0 1.46.79.85-10.78 8.3-1.04.67-1.22.41 1.33 2.04l.49.32 2.11-1.22 2.11-1.22.06-1.15c.12-2.4 1.5-3.5 3.38-2.87 1.11.38 1.35 1.03 1.33 5.34l-.01 1.41-4.03 2.33c-4.62 2.66-4.81 2.74-5.82 2.39zm1.4-.4c.19-.07 2.08-1.13 4.21-2.36l3.86-2.24v-2.36c0-2.89-.4-3.54-1.46-3.78-1.26-.28-2.48.69-2.48 2.88v1.01l-2.29 1.32c-1.26.72-2.34 1.32-2.4 1.32-.28 0-3.39-2.15-3.27-2.26.07-.06.62-.43 1.23-.81 10.55-6.7 10.67-6.78 10.66-7.93-.01-1.17-.11-1.25-4.18-3.54C12.97.7 14.06.78 9.12 3.53c-1.66.93-2.64 1.52-3.28 2.01-1.54 1.05-1.02 1.38-1.13 5.37l-.03 4.08-1.32.86c-1.93 1.28-2.35 2.03-1.73 3.22.7 1.37 1.81 1.4 3.82.1.65-.43 1.24-.75 1.3-.73s1.42.89 3.03 1.94c3.49 2.27 3.65 2.34 4.52 2.03zm-2.08-1.15c-.52-.34-1.99-1.28-3.25-2.1l-2.29-1.5-1.34.86c-2.04 1.32-2.59 1.66-3.3.4-.63-1.17-.01-1.58 1.73-2.71l1.44-.92.05-4.25s-.03-3.99.05-4.24c.07-.25.29-.4.29-.4.4-.56 7.02-4.41 7.72-4.48.59-.07.61-.06 4.36 2.04 4.28 2.4 4.11 2.28 4.11 3.18 0 .84-.65 1.32-10.3 7.44-2.6 1.65-2.6 1.21.03 2.9l2.21 1.42 2.63-1.51 2.63-1.51.04-1.35c.05-1.83.37-2.36 1.42-2.36 1.19 0 1.38.45 1.34 3.17l-.03 2.16-3.79 2.19c-4.56 2.63-4.22 2.53-5.72 1.57zm-.83-9.95c1.78-1.15 3.91-2.52 4.72-3.05 1.8-1.16 1.86-.92-.56-2.29L13.52 4.83 11.39 6.06c-1.18.68-2.41 1.39-2.73 1.57l-.6.35v2.71c0 1.49.02 2.71.04 2.71s1.5-.94 3.29-2.1zm-2.76-.9V8.35l2.44-1.42 2.46-1.41 1.47.82c.81.46 1.5.86 1.54.9s-1.66 1.19-3.79 2.55-3.92 2.52-3.99 2.57c-.1.07-.12-.34-.12-1.97zm2.53-.07c1.14-.73 2.66-1.71 3.38-2.17 1.16-.74 1.29-.85 1.14-.95-.46-.31-2.16-1.22-2.23-1.19-.05.01-1.06.58-2.26 1.28L9.02 8.55v1.56c0 .86.02 1.56.04 1.56s.97-.6 2.11-1.34z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity }) }));
|
|
9
9
|
};
|
|
10
10
|
const EleventheyeIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EmailIcon.d.ts","sourceRoot":"","sources":["../../src/icons/EmailIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"EmailIcon.d.ts","sourceRoot":"","sources":["../../src/icons/EmailIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAyB1C,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMlC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
package/dist/icons/EmailIcon.js
CHANGED
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const EmailIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.5, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const EmailIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.5, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M12.1 22.8q-2.2 0-4.2-.8t-3.4-2.3q-1.4-1.5-2.3-3.4t-.8-4.2q0-2.2.8-4.2t2.3-3.4Q6 3.1 7.9 2.2t4.2-.8q2.2 0 4.2.8t3.4 2.3 2.3 3.4.8 4.2v1.4q0 1.5-1.1 2.5t-2.6 1q-1 0-1.8-.5T16 15.2q-.7.9-1.8 1.4T12 17q-2.1 0-3.6-1.4T6.9 12q0-2.1 1.5-3.6T12 6.9t3.6 1.5T17.1 12v1.4q0 .8.6 1.4t1.4.6 1.5-.6q.6-.6.6-1.4V12q0-3.8-2.7-6.5T12.1 2.9q-3.8 0-6.5 2.7T2.9 12t2.7 6.5 6.5 2.7h5.8v1.6H12.1Zm0-7.4q1.4 0 2.4-1t1-2.4-1-2.4-2.4-1-2.4 1-1 2.4 1 2.4 2.4 1Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity }) }));
|
|
9
9
|
};
|
|
10
10
|
const EmailIcon = ({ ...props }) => {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ErrorIcon.d.ts","sourceRoot":"","sources":["../../src/icons/ErrorIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMlC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
|
+
const styles_1 = require("./styles");
|
|
7
|
+
const ErrorIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
|
+
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M11.51 22.8q-.99 0-1.7-.7t-.7-1.7q0-.99.7-1.7t1.7-.7q.99 0 1.7.7t.7 1.7q0 .99-.7 1.7t-1.7.7Zm0-7.2q-.99 0-1.7-.7t-.7-1.7V3.6q0-.99.7-1.7t1.7-.7q.99 0 1.7.7t.7 1.7v9.6q0 .99-.7 1.7t-1.7.7Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
|
+
};
|
|
10
|
+
const ErrorIcon = ({ ...props }) => {
|
|
11
|
+
return ((0, jsx_runtime_1.jsx)(ASIcon_1.default, { ...props, children: (0, jsx_runtime_1.jsx)(ErrorIconSvg, {}) }));
|
|
12
|
+
};
|
|
13
|
+
exports.default = ErrorIcon;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EyeIcon.d.ts","sourceRoot":"","sources":["../../src/icons/EyeIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"EyeIcon.d.ts","sourceRoot":"","sources":["../../src/icons/EyeIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMhC,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
package/dist/icons/EyeIcon.js
CHANGED
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const EyeIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const EyeIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "m12 4.04c5.26 0 9.73 3.55 10.91 8.54-1.18 4.86-5.65 8.54-10.91 8.54-5.26-.13-9.72-3.68-10.91-8.54C2.28 7.72 6.75 4.04 12 4.04Zm0 15.11c-4.21 0-7.75-2.76-8.94-6.57C4.24 8.77 7.79 6.01 12 6.01s7.75 2.76 8.94 6.57c-1.18 3.81-4.73 6.57-8.94 6.57zm3.81-6.57c0 2.1-1.71 3.81-3.81 3.81s-3.81-1.71-3.81-3.81S9.9 8.77 12 8.77s3.81 1.71 3.81 3.81zm-1.84 0c0 1.05-.79 1.84-1.84 1.84s-1.84-.79-1.96-1.78.8-1.94 1.84-1.93 1.95.63 1.97 1.78z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const EyeIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EyeSlashIcon.d.ts","sourceRoot":"","sources":["../../src/icons/EyeSlashIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"EyeSlashIcon.d.ts","sourceRoot":"","sources":["../../src/icons/EyeSlashIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAkC1C,QAAA,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMrC,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const EyeSlashIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const EyeSlashIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsxs)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: [(0, jsx_runtime_1.jsx)("path", { d: "m11.9 4.2c4.01 0 7.89 2.38 9.64 5.89.38.75.63 1.38.88 2.13-1 4.01-4.38 7.26-8.52 7.89-3.76.88-7.89-.63-10.27-3.63-1-1.13-1.75-2.63-2.13-4.13 1-4.01 4.38-7.14 8.39-7.89.63-.13 1.24-.24 2-.25zm0 14.41c-3.76.13-7.39-2.51-8.52-6.14.13-1 .75-2 1.38-2.88 2.25-3.01 6.39-4.26 9.9-3.13 2.76.88 5.01 3.13 5.76 5.89-1.13 3.63-4.63 6.39-8.52 6.26Zm3.63-6.26c.13 2-1.88 3.88-4.01 3.63-2-.25-3.63-2.38-3.13-4.38.38-2 2.63-3.38 4.51-2.63 1.5.38 2.63 1.88 2.63 3.38Zm-1.75 0c.13 1.25-1.5 2.25-2.63 1.63s-1.25-2.38-.13-3.13c1.13-.88 2.88.13 2.76 1.5z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }), (0, jsx_runtime_1.jsx)("path", { d: "M20.968 4.448C14.78 9.082 8.508 13.632 2.264 18.21A1.008 1.008 90 002.054 19.61 1.008 1.008 90 003.454 19.82C9.698 15.256 15.956 10.692 22.172 6.058A1.008 1.008 90 0022.368 4.658 1.008 1.008 90 0020.968 4.462Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" })] }));
|
|
9
9
|
};
|
|
10
10
|
const EyeSlashIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FootballIcon.d.ts","sourceRoot":"","sources":["../../src/icons/FootballIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"FootballIcon.d.ts","sourceRoot":"","sources":["../../src/icons/FootballIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMrC,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const FootballIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const FootballIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M16.53 4.93c.81 1.92 2.16 3.62 3.66 5.23.46-1.13.72-2.36.44-3.68-.08-.34-.31-.66-.57-.84-1.12-.67-2.33-.81-3.54-.74ZM3.9 13.73c-.49 1.1-.83 2.31-.55 3.62.06.34.32.69.6.86 1.15.72 2.39.89 3.65.81-1.03-1.99-2.15-3.85-3.68-5.27Zm5.07-6.1c-.21.15-.38.28-.58.43l1.5 1.7-.89.86-1.62-1.75c-.31.28-1.01 1.03-1.29 1.3l1.75 1.7-.66 1.01-1.88-1.67c-.06.12-.17.26-.23.35-.2.32-.35.63-.55.97 1.85 1.81 3.34 3.91 4.43 6.34.35-.06.72-.12 1.09-.17 1.84-.34 3.51-1.35 5.03-2.41 1.5-1.04 3.02-2.25 3.95-3.83.2-.34.35-.64.55-1.01-1.9-1.85-3.36-3.98-4.41-6.34-.51.08-1.04.17-1.56.29l.87 2.3-1.16.26-.84-2.18c-.37.15-1.32.57-1.69.77l1.09 1.99-1.03.48-1.12-1.9c-.21.14-.58.38-.77.51ZM7.83 6c1.88-1.32 4.32-2.42 6.34-2.74 2.01-.32 5.21-.83 7.75.87.35.23.69.72.8 1.15.74 2.97-.35 5.61-1.7 7.78-1.12 1.85-2.99 3.52-4.84 4.83-1.85 1.32-4.72 2.56-6.27 2.88-2.47.48-5.29.67-7.83-1.01-.35-.26-.7-.74-.81-1.16-.7-2.96.95-6.24 1.84-7.58 1.3-1.92 2.88-3.68 4.73-4.98Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const FootballIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GamesIcon.d.ts","sourceRoot":"","sources":["../../src/icons/GamesIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"GamesIcon.d.ts","sourceRoot":"","sources":["../../src/icons/GamesIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMlC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
package/dist/icons/GamesIcon.js
CHANGED
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const GamesIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const GamesIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M16.52 7.42c2.51 0 4.55 2.04 4.55 4.55s-2.04 4.55-4.55 4.55h-9.1c-2.51 0-4.55-2.04-4.55-4.55S4.91 7.42 7.42 7.42h9.1ZM7.42 5.6h9.1c3.52 0 6.37 2.85 6.37 6.37s-2.85 6.37-6.37 6.37h-9.1c-3.52 0-6.37-2.85-6.37-6.37C1.05 8.45 3.9 5.6 7.42 5.6Zm6.99 5.46c.23 0 .47.09.65.27.35.35.35.92 0 1.27-.35.36-.94.36-1.29 0-.35-.35-.35-.92 0-1.27.18-.18.42-.27.65-.27Zm1.94-1.92c.23 0 .45.08.64.26.36.35.36.94 0 1.29-.35.35-.92.35-1.29 0-.35-.35-.35-.94 0-1.29.18-.17.42-.26.65-.26Zm1.94 1.92c.23 0 .47.09.65.27.35.35.35.92 0 1.27-.35.36-.94.36-1.29 0-.35-.35-.35-.92 0-1.27.18-.18.42-.27.65-.27ZM16.33 13c.25-.01.49.08.68.26.36.35.36.94 0 1.29-.35.35-.92.35-1.29 0-.35-.35-.35-.94 0-1.29.18-.16.39-.25.61-.26ZM6.46 14.62h1.82V12.8h1.82v-1.82H8.28V9.16H6.46v1.82H4.64v1.82h1.82Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const GamesIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GearUserIcon.d.ts","sourceRoot":"","sources":["../../src/icons/GearUserIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"GearUserIcon.d.ts","sourceRoot":"","sources":["../../src/icons/GearUserIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMrC,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const GearUserIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const GearUserIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M13.4 8.8a1.75 1.75 90 01-1.75 1.75A1.75 1.75 90 019.9 8.8a1.75 1.75 90 011.74-1.75A1.75 1.75 90 0113.4 8.82Zm1.39 7.1V12.73c0-.88-.72-1.59-1.59-1.59H10.03c-.88 0-1.59.72-1.59 1.59v3.18Zm-4.32 7.09H13.2l.49-3.73c.68-.17 1.33-.41 1.9-.75s1.16-.77 1.77-1.35l3.36 1.48 1.33-2.3-2.97-2.23c.09-.4.16-.78.22-1.12s.09-.68.09-1.01c0-.39-.02-.73-.09-1.06-.06-.32-.12-.68-.19-1.07l3-2.26-1.29-2.3-3.48 1.43c-.42-.49-.98-.92-1.67-1.36s-1.37-.68-2.01-.77L13.25.94H10.42l-.38 3.61c-.75.16-1.45.4-2.04.75-.62.35-1.18.79-1.75 1.36L2.87 5.24 1.51 7.54 4.5 9.77c-.1.35-.18.7-.22 1.06s-.07.72-.07 1.1c0 .35.01.7.07 1.06.06.35.11.72.2 1.1L1.54 16.32l1.36 2.3 3.36-1.45c.56.6 1.16 1.05 1.75 1.38.62.32 1.28.56 2 .75Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const GearUserIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HexagonIcon.d.ts","sourceRoot":"","sources":["../../src/icons/HexagonIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"HexagonIcon.d.ts","sourceRoot":"","sources":["../../src/icons/HexagonIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMpC,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const HexagonIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const HexagonIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M11.95 1.04l9.87 5.48V17.5L11.94 23 2.06 17.5V6.52l9.89-5.48ZM5.36 15.56V8.47l6.59-3.68 6.59 3.68v7.1l-6.59 3.67-6.59-3.68Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const HexagonIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HomeIcon.d.ts","sourceRoot":"","sources":["../../src/icons/HomeIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"HomeIcon.d.ts","sourceRoot":"","sources":["../../src/icons/HomeIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMjC,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
package/dist/icons/HomeIcon.js
CHANGED
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const HomeIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const HomeIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M9.89 5.13c0 .62-.47.94-.94.94-.62 0-.94-.47-.94-.94s.47-.94.94-.94c.62 0 .94.47.94.94Zm-.94 4.06c.62 0 .94-.47.94-.94s-.47-.94-.94-.94c-.62 0-.94.47-.94.94s.47.94.94.94Zm.94 9.83c0 .62-.47.94-.94.94-.62 0-.94-.47-.94-.94s.47-.94.94-.94c.62 0 .94.47.94.94Zm-.94-6.86c.62 0 .94-.47.94-.94 0-.62-.47-.94-.94-.94-.62 0-.94.47-.94.94 0 .62.47.94.94.94Zm3.9-6.86c0 .62-.47.94-.94.94s-.94-.47-.94-.94.47-.94.94-.94.94.47.94.94Zm-.93 3.89c.62 0 .94-.47.94-.94s-.47-.94-.94-.94-.94.47-.94.94.47.94.94.94Zm.94 9.83c0 .62-.47.94-.94.94s-.94-.47-.94-.94.47-.94.94-.94.94.47.94.94Zm2.03-12.79c.62 0 .94-.47.94-.94s-.47-.94-.94-.94-.94.47-.94.94.47.94.94.94Zm.94 2.03c0 .62-.47.94-.94.94s-.94-.47-.94-.94.47-.94.94-.94.94.47.94.94Zm-.94 11.86c.62 0 .94-.47.94-.94s-.47-.94-.94-.94-.94.47-.94.94.47.94.94.94ZM8.02 1.23c-1.72 0-2.96 1.25-2.96 2.96V19.95c0 1.72 1.25 2.96 2.96 2.96h7.8c1.72 0 2.96-1.25 2.96-2.96V4.2c0-1.72-1.25-2.96-2.96-2.96h-7.8Zm7.8 2.03h-7.8c-.62 0-.94.47-.94.94V19.95c0 .62.47.94.94.94h7.8c.62 0 .94-.47.94-.94V4.2c0-.62-.47-.94-.94-.94Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const HomeIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LockIcon.d.ts","sourceRoot":"","sources":["../../src/icons/LockIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"LockIcon.d.ts","sourceRoot":"","sources":["../../src/icons/LockIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMjC,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
package/dist/icons/LockIcon.js
CHANGED
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const LockIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const LockIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M18.25 10.39c1.74 0 3.14 1.4 3.14 3.14v6.29c0 1.74-1.4 3.14-3.14 3.14H5.67c-1.74 0-3.14-1.4-3.14-3.14v-6.29c0-1.74 1.4-3.14 3.14-3.14V7.25C5.67 3.79 8.5.96 11.96.96s6.29 2.83 6.29 6.29v3.14ZM11.96 3.04c2.31 0 4.19 1.88 4.19 4.19v3.14H7.77V7.24c0-2.31 1.88-4.19 4.19-4.19Zm6.29 9.44H5.67c-.57 0-1.06.47-1.06 1.06v6.29c0 .57.47 1.06 1.06 1.06h12.58c.57 0 1.06-.47 1.06-1.06v-6.29c0-.57-.47-1.06-1.06-1.06Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const LockIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PenIcon.d.ts","sourceRoot":"","sources":["../../src/icons/PenIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"PenIcon.d.ts","sourceRoot":"","sources":["../../src/icons/PenIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMhC,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
package/dist/icons/PenIcon.js
CHANGED
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const PenIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const PenIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "m18.57 8.35-2.93-2.93 1.03-1.03c.4-.4 1.05-.4 1.45 0l1.45 1.45c.4.4.4 1.05 0 1.45l-1.03 1.03Zm-1.88 1.88-2.93-2.93-6.6 6.6 2.93 2.93 6.6-6.6Zm4.4-8.81 1.45 1.45c.4.4.4 1.05 0 1.45l-.91.91c.57 1.15.34 2.57-.61 3.53l-10.95 10.99-5.86-5.86L15.2 2.92c.95-.95 2.38-1.17 3.53-.61l.91-.91c.4-.4 1.05-.4 1.45 0ZM1.18 22.79l2.2-8.04 5.84 5.84-8.04 2.2Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const PenIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PodiumIcon.d.ts","sourceRoot":"","sources":["../../src/icons/PodiumIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"PodiumIcon.d.ts","sourceRoot":"","sources":["../../src/icons/PodiumIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMnC,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/dist/icons/PodiumIcon.js
CHANGED
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const PodiumIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const PodiumIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M2.71 20.16h5.08v-9.78H2.71v9.78Zm6.71 0h5.05V3.85H9.42v16.31Zm6.69 0h5.08v-7.61H16.11v7.61Zm-15.03 0v-9.78q0-.67.48-1.15t1.15-.48h5.08V3.86q0-.67.48-1.15.48-.48 1.15-.48h5.05q.67 0 1.15.48.49.48.49 1.15v7.07h5.08q.67 0 1.15.48.48.47.48 1.15v7.61q0 .67-.48 1.15-.48.48-1.15.48H2.71q-.67 0-1.15-.48t-.48-1.16Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const PodiumIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RulerIcon.d.ts","sourceRoot":"","sources":["../../src/icons/RulerIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"RulerIcon.d.ts","sourceRoot":"","sources":["../../src/icons/RulerIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMlC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
package/dist/icons/RulerIcon.js
CHANGED
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const RulerIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const RulerIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M9.31 7.98v2.73c0 .52.39.91.91.91s.91-.39.91-.91V7.98h1.82v4.55c0 .52.39.91.91.91s.91-.39.91-.91V7.98h1.82v2.73c0 .52.39.91.91.91s.91-.39.91-.91V7.98h1.82c.52 0 .91.39.91.91v6.37c0 .52-.39.91-.91.91H3.85c-.52 0-.91-.39-.91-.91V8.89c0-.52.39-.91.91-.91H5.67v4.55c0 .52.39.91.91.91s.91-.39.91-.91V7.98H9.31ZM3.85 6.16H20.23c1.56 0 2.73 1.17 2.73 2.73v6.37c0 1.56-1.17 2.73-2.73 2.73H3.85c-1.56 0-2.73-1.17-2.73-2.73V8.89c0-1.56 1.17-2.73 2.73-2.73Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const RulerIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SaveIcon.d.ts","sourceRoot":"","sources":["../../src/icons/SaveIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"SaveIcon.d.ts","sourceRoot":"","sources":["../../src/icons/SaveIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAqD1C,QAAA,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMjC,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
package/dist/icons/SaveIcon.js
CHANGED
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const SaveIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const SaveIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsxs)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: [(0, jsx_runtime_1.jsx)("path", { d: "M12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9ZM11 12C11 12.5523 11.4477 13 12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }), (0, jsx_runtime_1.jsx)("path", { d: "M5 12C5 8.13401 8.13401 5 12 5V7C9.23858 7 7 9.23858 7 12H5Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }), (0, jsx_runtime_1.jsx)("path", { d: "M12 17C14.7614 17 17 14.7614 17 12H19C19 15.866 15.866 19 12 19V17Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }), (0, jsx_runtime_1.jsx)("path", { d: "M12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1ZM3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" })] }));
|
|
9
9
|
};
|
|
10
10
|
const SaveIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SearchIcon.d.ts","sourceRoot":"","sources":["../../src/icons/SearchIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"SearchIcon.d.ts","sourceRoot":"","sources":["../../src/icons/SearchIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMnC,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/dist/icons/SearchIcon.js
CHANGED
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const SearchIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const SearchIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M15.2 5.53c-2.78-2.62-7.04-2.62-9.83 0-2.62 2.78-2.62 7.04 0 9.83 2.78 2.62 7.04 2.62 9.83 0 2.62-2.78 2.62-7.04 0-9.83Zm2.29 10.48s0 0 .16.16l4.75 4.75c.49.49.49 1.15 0 1.64-.33.49-1.15.49-1.64 0l-4.75-4.91s-.16 0-.16 0c-3.6 2.78-8.68 2.62-12.12-.82-3.44-3.44-3.44-9.34 0-12.94 3.6-3.6 9.5-3.6 13.1 0 3.28 3.28 3.44 8.52.66 12.12Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const SearchIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StatsIcon.d.ts","sourceRoot":"","sources":["../../src/icons/StatsIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"StatsIcon.d.ts","sourceRoot":"","sources":["../../src/icons/StatsIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMlC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
package/dist/icons/StatsIcon.js
CHANGED
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const StatsIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const StatsIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M2.29 21.81q-.46 0-.77-.31t-.32-.77q0-.46.31-.77t.78-.32h19.56q.46 0 .77.31t.32.78q0 .46-.31.77t-.78.31H2.29Zm1.63-3.26q-.68 0-1.15-.48t-.48-1.15v-4.35q0-.68.48-1.15t1.15-.47q.68 0 1.15.48t.48 1.15v4.35q0 .68-.48 1.15t-1.15.47Zm5.43 0q-.68 0-1.15-.48t-.48-1.15V7.14q0-.68.48-1.15t1.15-.48q.68 0 1.15.48t.48 1.15v9.78q0 .68-.48 1.15t-1.15.48Zm5.43 0q-.68 0-1.15-.48t-.47-1.15V10.4q0-.68.48-1.15t1.15-.48q.68 0 1.15.48t.48 1.15v6.52q0 .68-.48 1.15t-1.15.48Zm5.43 0q-.68 0-1.15-.48t-.47-1.15V3.88q0-.68.48-1.15t1.15-.48q.68 0 1.15.48t.48 1.15v13.04q0 .68-.48 1.15t-1.15.48Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const StatsIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TimeLapseIcon.d.ts","sourceRoot":"","sources":["../../src/icons/TimeLapseIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"TimeLapseIcon.d.ts","sourceRoot":"","sources":["../../src/icons/TimeLapseIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMtC,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const TimeLapseIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const TimeLapseIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M12.09 19.07c-1.99 0-3.65-.83-4.98-1.99l4.98-4.98V5.12c3.82 0 6.97 3.15 6.97 6.97s-3.15 6.97-6.97 6.97Zm10.96-6.98c0 5.98-4.98 10.96-10.96 10.96S1.13 18.07 1.13 12.09 6.11 1.13 12.09 1.13s10.96 4.99 10.96 10.96Zm-1.99 0c0 4.98-3.98 8.96-8.96 8.96s-8.97-3.98-8.97-8.96 3.98-8.96 8.96-8.96 8.96 3.98 8.96 8.96Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const TimeLapseIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UnlockIcon.d.ts","sourceRoot":"","sources":["../../src/icons/UnlockIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"UnlockIcon.d.ts","sourceRoot":"","sources":["../../src/icons/UnlockIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMnC,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/dist/icons/UnlockIcon.js
CHANGED
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const UnlockIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const UnlockIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M18.19 12.58c.56 0 1.03.47 1.03 1.03v6.19c0 .56-.47 1.03-1.03 1.03H5.81c-.56 0-1.03-.47-1.03-1.03v-6.19c0-.56.47-1.03 1.03-1.03h12.38Zm1.03-5.16c0-3.41-2.78-6.19-6.19-6.19S6.84 4.01 6.84 7.42v3.1H5.81c-1.72 0-3.09 1.38-3.09 3.09v6.19c0 1.72 1.38 3.09 3.09 3.09h12.38c1.72 0 3.09-1.38 3.09-3.09v-6.19c0-1.72-1.38-3.09-3.09-3.09H8.9V7.43c0-2.28 1.84-4.13 4.13-4.13s4.13 1.84 4.13 4.13h2.06Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const UnlockIcon = ({ ...props }) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserSettingsIcon.d.ts","sourceRoot":"","sources":["../../src/icons/UserSettingsIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"UserSettingsIcon.d.ts","sourceRoot":"","sources":["../../src/icons/UserSettingsIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA0B1C,QAAA,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAMzC,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const ASIcon_1 = tslib_1.__importDefault(require("./ASIcon"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
|
-
const UserSettingsIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, }) => {
|
|
7
|
+
const UserSettingsIconSvg = ({ size = 24, color = '#000000', strokeWidth = 0.1, fillColor = '#000000', fillOpacity = 1, withCircle = false, ...props }) => {
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)(styles_1.TopIcon, { "$withCircle": withCircle, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "m8.58 11.03c-.53 0-1.05.26-1.05.79-.13 1.97 0 3.94 0 5.91 1.44.79 3.02 1.58 4.46 2.23 1.44-.66 2.89-1.44 4.2-2.23v-5.12c0-.53 0-1.44-.92-1.58zm3.15-8.05c-1.7-.13-2.76 2.14-1.84 3.32s3.16 1.14 3.82-.17c.92-1.31-.08-3.2-1.98-3.15zm.13-1.97c2.1 0 3.94 1.61 4.2 3.45.53 2.1-1.44 4.46-3.81 4.46h2.49c1.71-.13 3.41.92 3.54 2.49v5.12c.39-.26.66-.39 1.05-.66V8.93h2.25v8.2c-3.23 1.97-6.3 3.65-9.4 5.86-3.26-1.89-6.75-3.65-9.97-5.51v-8.6h2.25v6.96c.39.13.66.39 1.05.66V12.34C5.38 10.9 6.43 9.32 8 9.06c1.18-.13 2.36-.13 3.68-.13-2.1-.26-3.81-1.84-3.94-3.54-.26-2.23 1.84-4.5 4.33-4.37Z", stroke: color, strokeWidth: strokeWidth, fill: fillColor, fillOpacity: fillOpacity, fillRule: "evenodd" }) }));
|
|
9
9
|
};
|
|
10
10
|
const UserSettingsIcon = ({ ...props }) => {
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ export * from './EleventheyeIcon';
|
|
|
14
14
|
export { default as EleventheyeIcon } from './EleventheyeIcon';
|
|
15
15
|
export * from './EmailIcon';
|
|
16
16
|
export { default as EmailIcon } from './EmailIcon';
|
|
17
|
+
export * from './ErrorIcon';
|
|
18
|
+
export { default as ErrorIcon } from './ErrorIcon';
|
|
17
19
|
export * from './EyeIcon';
|
|
18
20
|
export { default as EyeIcon } from './EyeIcon';
|
|
19
21
|
export * from './EyeSlashIcon';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/icons/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAE7C,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAEvD,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAEvD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,cAAc,mBAAmB,CAAC;AAClC,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAE/D,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAE/C,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEzD,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEzD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEzD,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAEvD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEjD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEjD,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAE/C,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEjD,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,iBAAiB,CAAC;AAChC,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAE3D,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,cAAc,oBAAoB,CAAC;AACnC,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEjE,cAAc,eAAe,CAAC;AAC9B,YAAY,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/icons/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAE7C,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAEvD,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAEvD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,cAAc,mBAAmB,CAAC;AAClC,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAE/D,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAE/C,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEzD,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEzD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEzD,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAEvD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEjD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEjD,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAE/C,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEjD,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,iBAAiB,CAAC;AAChC,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAE3D,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,cAAc,oBAAoB,CAAC;AACnC,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEjE,cAAc,eAAe,CAAC;AAC9B,YAAY,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC"}
|
package/dist/icons/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UserSettingsIcon = exports.UnlockIcon = exports.TimeLapseIcon = exports.StatsIcon = exports.SearchIcon = exports.SaveIcon = exports.RulerIcon = exports.PodiumIcon = exports.PenIcon = exports.LockIcon = exports.HomeIcon = exports.HexagonIcon = exports.GearUserIcon = exports.GamesIcon = exports.FootballIcon = exports.EyeSlashIcon = exports.EyeIcon = exports.EmailIcon = exports.EleventheyeIcon = exports.DeleteIcon = exports.CloseIcon = exports.CheckIcon = exports.AddUserIcon = exports.AddItemIcon = exports.ASIcon = void 0;
|
|
3
|
+
exports.UserSettingsIcon = exports.UnlockIcon = exports.TimeLapseIcon = exports.StatsIcon = exports.SearchIcon = exports.SaveIcon = exports.RulerIcon = exports.PodiumIcon = exports.PenIcon = exports.LockIcon = exports.HomeIcon = exports.HexagonIcon = exports.GearUserIcon = exports.GamesIcon = exports.FootballIcon = exports.EyeSlashIcon = exports.EyeIcon = exports.ErrorIcon = exports.EmailIcon = exports.EleventheyeIcon = exports.DeleteIcon = exports.CloseIcon = exports.CheckIcon = exports.AddUserIcon = exports.AddItemIcon = exports.ASIcon = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
tslib_1.__exportStar(require("./ASIcon"), exports);
|
|
6
6
|
var ASIcon_1 = require("./ASIcon");
|
|
@@ -26,6 +26,9 @@ Object.defineProperty(exports, "EleventheyeIcon", { enumerable: true, get: funct
|
|
|
26
26
|
tslib_1.__exportStar(require("./EmailIcon"), exports);
|
|
27
27
|
var EmailIcon_1 = require("./EmailIcon");
|
|
28
28
|
Object.defineProperty(exports, "EmailIcon", { enumerable: true, get: function () { return tslib_1.__importDefault(EmailIcon_1).default; } });
|
|
29
|
+
tslib_1.__exportStar(require("./ErrorIcon"), exports);
|
|
30
|
+
var ErrorIcon_1 = require("./ErrorIcon");
|
|
31
|
+
Object.defineProperty(exports, "ErrorIcon", { enumerable: true, get: function () { return tslib_1.__importDefault(ErrorIcon_1).default; } });
|
|
29
32
|
tslib_1.__exportStar(require("./EyeIcon"), exports);
|
|
30
33
|
var EyeIcon_1 = require("./EyeIcon");
|
|
31
34
|
Object.defineProperty(exports, "EyeIcon", { enumerable: true, get: function () { return tslib_1.__importDefault(EyeIcon_1).default; } });
|
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,8 @@ export { default as CheckIcon } from './icons/CheckIcon';
|
|
|
8
8
|
export { default as CloseIcon } from './icons/CloseIcon';
|
|
9
9
|
export { default as DeleteIcon } from './icons/DeleteIcon';
|
|
10
10
|
export { default as EleventheyeIcon } from './icons/EleventheyeIcon';
|
|
11
|
+
export { default as EmailIcon } from './icons/EmailIcon';
|
|
12
|
+
export { default as ErrorIcon } from './icons/ErrorIcon';
|
|
11
13
|
export { default as EyeIcon } from './icons/EyeIcon';
|
|
12
14
|
export { default as EyeSlashIcon } from './icons/EyeSlashIcon';
|
|
13
15
|
export { default as FootballIcon } from './icons/FootballIcon';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,YAAY,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAErD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAErE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAEvE,YAAY,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAChD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAE1D,YAAY,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAChD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAE1D,YAAY,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,2BAA2B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,YAAY,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAErD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAErE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAEvE,YAAY,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAChD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAE1D,YAAY,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAChD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAE1D,YAAY,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,2BAA2B,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ASTextField = exports.ASLoader = exports.ASButton = exports.UserSettingsIcon = exports.UnlockIcon = exports.TimeLapseIcon = exports.StatsIcon = exports.SearchIcon = exports.SaveIcon = exports.RulerIcon = exports.PodiumIcon = exports.PenIcon = exports.LockIcon = exports.HomeIcon = exports.HexagonIcon = exports.GearUserIcon = exports.GamesIcon = exports.FootballIcon = exports.EyeSlashIcon = exports.EyeIcon = exports.EleventheyeIcon = exports.DeleteIcon = exports.CloseIcon = exports.CheckIcon = exports.ASIcon = exports.AddUserIcon = exports.AddItemIcon = exports.ASThemeDefault = void 0;
|
|
3
|
+
exports.ASTextField = exports.ASLoader = exports.ASButton = exports.UserSettingsIcon = exports.UnlockIcon = exports.TimeLapseIcon = exports.StatsIcon = exports.SearchIcon = exports.SaveIcon = exports.RulerIcon = exports.PodiumIcon = exports.PenIcon = exports.LockIcon = exports.HomeIcon = exports.HexagonIcon = exports.GearUserIcon = exports.GamesIcon = exports.FootballIcon = exports.EyeSlashIcon = exports.EyeIcon = exports.ErrorIcon = exports.EmailIcon = exports.EleventheyeIcon = exports.DeleteIcon = exports.CloseIcon = exports.CheckIcon = exports.ASIcon = exports.AddUserIcon = exports.AddItemIcon = exports.ASThemeDefault = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
tslib_1.__exportStar(require("./icons/Icons.types"), exports);
|
|
6
6
|
var ASThemeDefault_1 = require("./astheme/ASThemeDefault");
|
|
@@ -19,6 +19,10 @@ var DeleteIcon_1 = require("./icons/DeleteIcon");
|
|
|
19
19
|
Object.defineProperty(exports, "DeleteIcon", { enumerable: true, get: function () { return tslib_1.__importDefault(DeleteIcon_1).default; } });
|
|
20
20
|
var EleventheyeIcon_1 = require("./icons/EleventheyeIcon");
|
|
21
21
|
Object.defineProperty(exports, "EleventheyeIcon", { enumerable: true, get: function () { return tslib_1.__importDefault(EleventheyeIcon_1).default; } });
|
|
22
|
+
var EmailIcon_1 = require("./icons/EmailIcon");
|
|
23
|
+
Object.defineProperty(exports, "EmailIcon", { enumerable: true, get: function () { return tslib_1.__importDefault(EmailIcon_1).default; } });
|
|
24
|
+
var ErrorIcon_1 = require("./icons/ErrorIcon");
|
|
25
|
+
Object.defineProperty(exports, "ErrorIcon", { enumerable: true, get: function () { return tslib_1.__importDefault(ErrorIcon_1).default; } });
|
|
22
26
|
var EyeIcon_1 = require("./icons/EyeIcon");
|
|
23
27
|
Object.defineProperty(exports, "EyeIcon", { enumerable: true, get: function () { return tslib_1.__importDefault(EyeIcon_1).default; } });
|
|
24
28
|
var EyeSlashIcon_1 = require("./icons/EyeSlashIcon");
|