@fountain-ui/icons 2.0.0-beta.19 → 2.0.0-beta.21
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/build/commonjs/icons/ContentFilled.js +21 -0
- package/build/commonjs/icons/ContentFilled.js.map +1 -0
- package/build/commonjs/icons/ContentOutlined.js +21 -0
- package/build/commonjs/icons/ContentOutlined.js.map +1 -0
- package/build/commonjs/icons/ContentOutlinedLight.js +21 -0
- package/build/commonjs/icons/ContentOutlinedLight.js.map +1 -0
- package/build/commonjs/icons/InfoSquareFilled.js +21 -0
- package/build/commonjs/icons/InfoSquareFilled.js.map +1 -0
- package/build/commonjs/icons/InfoSquareOutlined.js +21 -0
- package/build/commonjs/icons/InfoSquareOutlined.js.map +1 -0
- package/build/commonjs/icons/InfoSquareOutlinedLight.js +21 -0
- package/build/commonjs/icons/InfoSquareOutlinedLight.js.map +1 -0
- package/build/commonjs/icons/ListFilled.js +21 -0
- package/build/commonjs/icons/ListFilled.js.map +1 -0
- package/build/commonjs/icons/ListOutlined.js +21 -0
- package/build/commonjs/icons/ListOutlined.js.map +1 -0
- package/build/commonjs/icons/ListOutlinedLight.js +21 -0
- package/build/commonjs/icons/ListOutlinedLight.js.map +1 -0
- package/build/commonjs/index.js +72 -0
- package/build/commonjs/index.js.map +1 -1
- package/build/module/icons/ContentFilled.js +7 -0
- package/build/module/icons/ContentFilled.js.map +1 -0
- package/build/module/icons/ContentOutlined.js +7 -0
- package/build/module/icons/ContentOutlined.js.map +1 -0
- package/build/module/icons/ContentOutlinedLight.js +7 -0
- package/build/module/icons/ContentOutlinedLight.js.map +1 -0
- package/build/module/icons/InfoSquareFilled.js +7 -0
- package/build/module/icons/InfoSquareFilled.js.map +1 -0
- package/build/module/icons/InfoSquareOutlined.js +7 -0
- package/build/module/icons/InfoSquareOutlined.js.map +1 -0
- package/build/module/icons/InfoSquareOutlinedLight.js +7 -0
- package/build/module/icons/InfoSquareOutlinedLight.js.map +1 -0
- package/build/module/icons/ListFilled.js +7 -0
- package/build/module/icons/ListFilled.js.map +1 -0
- package/build/module/icons/ListOutlined.js +7 -0
- package/build/module/icons/ListOutlined.js.map +1 -0
- package/build/module/icons/ListOutlinedLight.js +7 -0
- package/build/module/icons/ListOutlinedLight.js.map +1 -0
- package/build/module/index.js +9 -0
- package/build/module/index.js.map +1 -1
- package/build/typescript/icons/ContentFilled.d.ts +130 -0
- package/build/typescript/icons/ContentOutlined.d.ts +130 -0
- package/build/typescript/icons/ContentOutlinedLight.d.ts +130 -0
- package/build/typescript/icons/InfoSquareFilled.d.ts +130 -0
- package/build/typescript/icons/InfoSquareOutlined.d.ts +130 -0
- package/build/typescript/icons/InfoSquareOutlinedLight.d.ts +130 -0
- package/build/typescript/icons/ListFilled.d.ts +130 -0
- package/build/typescript/icons/ListOutlined.d.ts +130 -0
- package/build/typescript/icons/ListOutlinedLight.d.ts +130 -0
- package/build/typescript/index.d.ts +9 -0
- package/package.json +2 -2
- package/src/icons/ContentFilled.tsx +10 -0
- package/src/icons/ContentOutlined.tsx +10 -0
- package/src/icons/ContentOutlinedLight.tsx +10 -0
- package/src/icons/InfoSquareFilled.tsx +10 -0
- package/src/icons/InfoSquareOutlined.tsx +10 -0
- package/src/icons/InfoSquareOutlinedLight.tsx +10 -0
- package/src/icons/ListFilled.tsx +10 -0
- package/src/icons/ListOutlined.tsx +10 -0
- package/src/icons/ListOutlinedLight.tsx +10 -0
- package/src/index.ts +9 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
11
|
+
|
|
12
|
+
var _createSvgIcon = _interopRequireDefault(require("../utils/createSvgIcon"));
|
|
13
|
+
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
|
|
16
|
+
var _default = (0, _createSvgIcon.default)( /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
|
|
17
|
+
d: "M3 6.62443C3 5.67708 3.66465 4.85968 4.59209 4.66647L12.5921 2.9998C13.8341 2.74106 15 3.68913 15 4.95776V19.0385C15 20.3072 13.8341 21.2552 12.5921 20.9965L4.59209 19.3298C3.66465 19.1366 3 18.3192 3 17.3719V6.62443ZM16 5H17C17.5523 5 18 5.44772 18 6V18C18 18.5523 17.5523 19 17 19H16V5ZM20 7H19V17H20C20.5523 17 21 16.5523 21 16V8C21 7.44772 20.5523 7 20 7Z"
|
|
18
|
+
}), 'ContentFilled');
|
|
19
|
+
|
|
20
|
+
exports.default = _default;
|
|
21
|
+
//# sourceMappingURL=ContentFilled.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["createSvgIcon"],"sources":["ContentFilled.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M3 6.62443C3 5.67708 3.66465 4.85968 4.59209 4.66647L12.5921 2.9998C13.8341 2.74106 15 3.68913 15 4.95776V19.0385C15 20.3072 13.8341 21.2552 12.5921 20.9965L4.59209 19.3298C3.66465 19.1366 3 18.3192 3 17.3719V6.62443ZM16 5H17C17.5523 5 18 5.44772 18 6V18C18 18.5523 17.5523 19 17 19H16V5ZM20 7H19V17H20C20.5523 17 21 16.5523 21 16V8C21 7.44772 20.5523 7 20 7Z\"\n />,\n 'ContentFilled',\n);\n"],"mappings":";;;;;;;AAAA;;AACA;;AACA;;;;eAEe,IAAAA,sBAAA,gBACX,6BAAC,oBAAD;EACI,CAAC,EAAC;AADN,EADW,EAIX,eAJW,C"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
11
|
+
|
|
12
|
+
var _createSvgIcon = _interopRequireDefault(require("../utils/createSvgIcon"));
|
|
13
|
+
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
|
|
16
|
+
var _default = (0, _createSvgIcon.default)( /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
|
|
17
|
+
d: "M13 4.95776L13 19.0385L5 17.3719L5 6.62443L13 4.95776ZM4.59209 4.66647C3.66465 4.85968 3 5.67708 3 6.62443V17.3719C3 18.3192 3.66465 19.1366 4.59209 19.3298L12.5921 20.9965C13.8341 21.2552 15 20.3072 15 19.0385V4.95776C15 3.68913 13.8341 2.74106 12.5921 2.9998L4.59209 4.66647ZM16 5H17C17.5523 5 18 5.44772 18 6V18C18 18.5523 17.5523 19 17 19H16V5ZM20 7H19V17H20C20.5523 17 21 16.5523 21 16V8C21 7.44772 20.5523 7 20 7Z"
|
|
18
|
+
}), 'ContentOutlined');
|
|
19
|
+
|
|
20
|
+
exports.default = _default;
|
|
21
|
+
//# sourceMappingURL=ContentOutlined.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["createSvgIcon"],"sources":["ContentOutlined.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M13 4.95776L13 19.0385L5 17.3719L5 6.62443L13 4.95776ZM4.59209 4.66647C3.66465 4.85968 3 5.67708 3 6.62443V17.3719C3 18.3192 3.66465 19.1366 4.59209 19.3298L12.5921 20.9965C13.8341 21.2552 15 20.3072 15 19.0385V4.95776C15 3.68913 13.8341 2.74106 12.5921 2.9998L4.59209 4.66647ZM16 5H17C17.5523 5 18 5.44772 18 6V18C18 18.5523 17.5523 19 17 19H16V5ZM20 7H19V17H20C20.5523 17 21 16.5523 21 16V8C21 7.44772 20.5523 7 20 7Z\"\n />,\n 'ContentOutlined',\n);\n"],"mappings":";;;;;;;AAAA;;AACA;;AACA;;;;eAEe,IAAAA,sBAAA,gBACX,6BAAC,oBAAD;EACI,CAAC,EAAC;AADN,EADW,EAIX,iBAJW,C"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
11
|
+
|
|
12
|
+
var _createSvgIcon = _interopRequireDefault(require("../utils/createSvgIcon"));
|
|
13
|
+
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
|
|
16
|
+
var _default = (0, _createSvgIcon.default)( /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
|
|
17
|
+
d: "M12.949 4.71497C13.1043 4.68263 13.25 4.80113 13.25 4.95971V19.0405C13.25 19.1991 13.1043 19.3176 12.949 19.2852L4.94901 17.6186C4.83308 17.5944 4.75 17.4923 4.75 17.3738V6.62638C4.75 6.50796 4.83308 6.40579 4.94901 6.38164L12.949 4.71497ZM4.59209 4.66842C3.66465 4.86164 3 5.67903 3 6.62638V17.3738C3 18.3212 3.66465 19.1386 4.59209 19.3318L12.5921 20.9985C13.8341 21.2572 15 20.3091 15 19.0405V4.95971C15 3.69109 13.8341 2.74301 12.5921 3.00175L4.59209 4.66842ZM16.25 5H17C17.5523 5 18 5.44772 18 6V18C18 18.5523 17.5523 19 17 19H16.25V5ZM20 7H19.25V17H20C20.5523 17 21 16.5523 21 16V8C21 7.44772 20.5523 7 20 7Z"
|
|
18
|
+
}), 'ContentOutlinedLight');
|
|
19
|
+
|
|
20
|
+
exports.default = _default;
|
|
21
|
+
//# sourceMappingURL=ContentOutlinedLight.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["createSvgIcon"],"sources":["ContentOutlinedLight.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M12.949 4.71497C13.1043 4.68263 13.25 4.80113 13.25 4.95971V19.0405C13.25 19.1991 13.1043 19.3176 12.949 19.2852L4.94901 17.6186C4.83308 17.5944 4.75 17.4923 4.75 17.3738V6.62638C4.75 6.50796 4.83308 6.40579 4.94901 6.38164L12.949 4.71497ZM4.59209 4.66842C3.66465 4.86164 3 5.67903 3 6.62638V17.3738C3 18.3212 3.66465 19.1386 4.59209 19.3318L12.5921 20.9985C13.8341 21.2572 15 20.3091 15 19.0405V4.95971C15 3.69109 13.8341 2.74301 12.5921 3.00175L4.59209 4.66842ZM16.25 5H17C17.5523 5 18 5.44772 18 6V18C18 18.5523 17.5523 19 17 19H16.25V5ZM20 7H19.25V17H20C20.5523 17 21 16.5523 21 16V8C21 7.44772 20.5523 7 20 7Z\"\n />,\n 'ContentOutlinedLight',\n);\n"],"mappings":";;;;;;;AAAA;;AACA;;AACA;;;;eAEe,IAAAA,sBAAA,gBACX,6BAAC,oBAAD;EACI,CAAC,EAAC;AADN,EADW,EAIX,sBAJW,C"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
11
|
+
|
|
12
|
+
var _createSvgIcon = _interopRequireDefault(require("../utils/createSvgIcon"));
|
|
13
|
+
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
|
|
16
|
+
var _default = (0, _createSvgIcon.default)( /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
|
|
17
|
+
d: "M7.77065 2.4697C4.98157 2.77959 2.77984 4.98132 2.46994 7.77041L2.2945 9.34941C2.09877 11.1109 2.09877 12.8886 2.2945 14.6501L2.46994 16.2291C2.77984 19.0182 4.98157 21.2199 7.77065 21.5298L9.34966 21.7053C11.1111 21.901 12.8889 21.901 14.6504 21.7053L16.2294 21.5298C19.0185 21.2199 21.2202 19.0182 21.5301 16.2291L21.7055 14.6501C21.9013 12.8886 21.9013 11.1109 21.7055 9.34941L21.5301 7.77041C21.2202 4.98133 19.0185 2.77959 16.2294 2.4697L14.6504 2.29425C12.8889 2.09853 11.1111 2.09853 9.34966 2.29425L7.77065 2.4697ZM13.25 8.75C13.25 9.44036 12.6904 10 12 10C11.3096 10 10.75 9.44036 10.75 8.75C10.75 8.05964 11.3096 7.5 12 7.5C12.6904 7.5 13.25 8.05964 13.25 8.75ZM11 12.1C11 11.4925 11.4477 11 12 11C12.5523 11 13 11.4925 13 12.1V15.4C13 16.0075 12.5523 16.5 12 16.5C11.4477 16.5 11 16.0075 11 15.4V12.1Z"
|
|
18
|
+
}), 'InfoSquareFilled');
|
|
19
|
+
|
|
20
|
+
exports.default = _default;
|
|
21
|
+
//# sourceMappingURL=InfoSquareFilled.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["createSvgIcon"],"sources":["InfoSquareFilled.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M7.77065 2.4697C4.98157 2.77959 2.77984 4.98132 2.46994 7.77041L2.2945 9.34941C2.09877 11.1109 2.09877 12.8886 2.2945 14.6501L2.46994 16.2291C2.77984 19.0182 4.98157 21.2199 7.77065 21.5298L9.34966 21.7053C11.1111 21.901 12.8889 21.901 14.6504 21.7053L16.2294 21.5298C19.0185 21.2199 21.2202 19.0182 21.5301 16.2291L21.7055 14.6501C21.9013 12.8886 21.9013 11.1109 21.7055 9.34941L21.5301 7.77041C21.2202 4.98133 19.0185 2.77959 16.2294 2.4697L14.6504 2.29425C12.8889 2.09853 11.1111 2.09853 9.34966 2.29425L7.77065 2.4697ZM13.25 8.75C13.25 9.44036 12.6904 10 12 10C11.3096 10 10.75 9.44036 10.75 8.75C10.75 8.05964 11.3096 7.5 12 7.5C12.6904 7.5 13.25 8.05964 13.25 8.75ZM11 12.1C11 11.4925 11.4477 11 12 11C12.5523 11 13 11.4925 13 12.1V15.4C13 16.0075 12.5523 16.5 12 16.5C11.4477 16.5 11 16.0075 11 15.4V12.1Z\"\n />,\n 'InfoSquareFilled',\n);\n"],"mappings":";;;;;;;AAAA;;AACA;;AACA;;;;eAEe,IAAAA,sBAAA,gBACX,6BAAC,oBAAD;EACI,CAAC,EAAC;AADN,EADW,EAIX,kBAJW,C"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
11
|
+
|
|
12
|
+
var _createSvgIcon = _interopRequireDefault(require("../utils/createSvgIcon"));
|
|
13
|
+
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
|
|
16
|
+
var _default = (0, _createSvgIcon.default)( /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
|
|
17
|
+
d: "M16.5133 5.18863C17.6433 5.47112 18.5256 6.35342 18.8081 7.48341C19.5491 10.4477 19.5491 13.5489 18.8081 16.5133C18.5256 17.6433 17.6433 18.5256 16.5133 18.8081C13.5489 19.5491 10.4477 19.5491 7.48341 18.8081C6.35342 18.5256 5.47112 17.6433 5.18863 16.5133C4.44754 13.5489 4.44754 10.4477 5.18863 7.48341C5.47112 6.35342 6.35342 5.47112 7.48341 5.18863C10.4477 4.44754 13.5489 4.44754 16.5133 5.18863ZM6.99834 3.24834C5.15178 3.70998 3.70998 5.15178 3.24834 6.99834C2.42764 10.2812 2.42764 13.7155 3.24834 16.9983C3.70998 18.8449 5.15178 20.2867 6.99834 20.7483C10.2812 21.569 13.7155 21.569 16.9983 20.7483C18.8449 20.2867 20.2867 18.8449 20.7483 16.9983C21.569 13.7155 21.569 10.2812 20.7483 6.99834C20.2867 5.15178 18.8449 3.70998 16.9983 3.24834C13.7155 2.42764 10.2812 2.42764 6.99834 3.24834ZM13.25 8.75C13.25 9.44036 12.6904 10 12 10C11.3096 10 10.75 9.44036 10.75 8.75C10.75 8.05964 11.3096 7.5 12 7.5C12.6904 7.5 13.25 8.05964 13.25 8.75ZM12 11C11.4477 11 11 11.4925 11 12.1V15.4C11 16.0075 11.4477 16.5 12 16.5C12.5523 16.5 13 16.0075 13 15.4V12.1C13 11.4925 12.5523 11 12 11Z"
|
|
18
|
+
}), 'InfoSquareOutlined');
|
|
19
|
+
|
|
20
|
+
exports.default = _default;
|
|
21
|
+
//# sourceMappingURL=InfoSquareOutlined.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["createSvgIcon"],"sources":["InfoSquareOutlined.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M16.5133 5.18863C17.6433 5.47112 18.5256 6.35342 18.8081 7.48341C19.5491 10.4477 19.5491 13.5489 18.8081 16.5133C18.5256 17.6433 17.6433 18.5256 16.5133 18.8081C13.5489 19.5491 10.4477 19.5491 7.48341 18.8081C6.35342 18.5256 5.47112 17.6433 5.18863 16.5133C4.44754 13.5489 4.44754 10.4477 5.18863 7.48341C5.47112 6.35342 6.35342 5.47112 7.48341 5.18863C10.4477 4.44754 13.5489 4.44754 16.5133 5.18863ZM6.99834 3.24834C5.15178 3.70998 3.70998 5.15178 3.24834 6.99834C2.42764 10.2812 2.42764 13.7155 3.24834 16.9983C3.70998 18.8449 5.15178 20.2867 6.99834 20.7483C10.2812 21.569 13.7155 21.569 16.9983 20.7483C18.8449 20.2867 20.2867 18.8449 20.7483 16.9983C21.569 13.7155 21.569 10.2812 20.7483 6.99834C20.2867 5.15178 18.8449 3.70998 16.9983 3.24834C13.7155 2.42764 10.2812 2.42764 6.99834 3.24834ZM13.25 8.75C13.25 9.44036 12.6904 10 12 10C11.3096 10 10.75 9.44036 10.75 8.75C10.75 8.05964 11.3096 7.5 12 7.5C12.6904 7.5 13.25 8.05964 13.25 8.75ZM12 11C11.4477 11 11 11.4925 11 12.1V15.4C11 16.0075 11.4477 16.5 12 16.5C12.5523 16.5 13 16.0075 13 15.4V12.1C13 11.4925 12.5523 11 12 11Z\"\n />,\n 'InfoSquareOutlined',\n);\n"],"mappings":";;;;;;;AAAA;;AACA;;AACA;;;;eAEe,IAAAA,sBAAA,gBACX,6BAAC,oBAAD;EACI,CAAC,EAAC;AADN,EADW,EAIX,oBAJW,C"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
11
|
+
|
|
12
|
+
var _createSvgIcon = _interopRequireDefault(require("../utils/createSvgIcon"));
|
|
13
|
+
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
|
|
16
|
+
var _default = (0, _createSvgIcon.default)( /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
|
|
17
|
+
d: "M19.9662 9.54267C20.1477 11.1757 20.1477 12.8238 19.9662 14.4569L19.7908 16.0359C19.5713 18.0115 18.0117 19.571 16.0361 19.7905L14.4571 19.966C12.8241 20.1474 11.176 20.1474 9.54291 19.966L7.96391 19.7905C5.98831 19.571 4.42875 18.0115 4.20924 16.0359L4.03379 14.4569C3.85234 12.8238 3.85234 11.1757 4.03379 9.54267L4.20924 7.96366C4.42875 5.98806 5.98831 4.4285 7.96391 4.20899L9.54291 4.03355C11.176 3.8521 12.8241 3.8521 14.4571 4.03355L16.0361 4.20899C18.0117 4.4285 19.5713 5.98806 19.7908 7.96367L19.9662 9.54267ZM7.77065 2.4697C4.98157 2.77959 2.77984 4.98132 2.46994 7.77041L2.2945 9.34941C2.09877 11.1109 2.09877 12.8886 2.2945 14.6501L2.46994 16.2291C2.77984 19.0182 4.98157 21.2199 7.77065 21.5298L9.34966 21.7053C11.1111 21.901 12.8889 21.901 14.6504 21.7053L16.2294 21.5298C19.0185 21.2199 21.2202 19.0182 21.5301 16.2291L21.7055 14.6501C21.9012 12.8886 21.9012 11.1109 21.7055 9.34941L21.5301 7.77041C21.2202 4.98133 19.0185 2.77959 16.2294 2.4697L14.6504 2.29425C12.8889 2.09853 11.1111 2.09853 9.34966 2.29425L7.77065 2.4697ZM13.25 8.75C13.25 9.44036 12.6904 10 12 10C11.3096 10 10.75 9.44036 10.75 8.75C10.75 8.05964 11.3096 7.5 12 7.5C12.6904 7.5 13.25 8.05964 13.25 8.75ZM12 11C11.4477 11 11 11.4925 11 12.1V15.4C11 16.0075 11.4477 16.5 12 16.5C12.5523 16.5 13 16.0075 13 15.4V12.1C13 11.4925 12.5523 11 12 11Z"
|
|
18
|
+
}), 'InfoSquareOutlinedLight');
|
|
19
|
+
|
|
20
|
+
exports.default = _default;
|
|
21
|
+
//# sourceMappingURL=InfoSquareOutlinedLight.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["createSvgIcon"],"sources":["InfoSquareOutlinedLight.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M19.9662 9.54267C20.1477 11.1757 20.1477 12.8238 19.9662 14.4569L19.7908 16.0359C19.5713 18.0115 18.0117 19.571 16.0361 19.7905L14.4571 19.966C12.8241 20.1474 11.176 20.1474 9.54291 19.966L7.96391 19.7905C5.98831 19.571 4.42875 18.0115 4.20924 16.0359L4.03379 14.4569C3.85234 12.8238 3.85234 11.1757 4.03379 9.54267L4.20924 7.96366C4.42875 5.98806 5.98831 4.4285 7.96391 4.20899L9.54291 4.03355C11.176 3.8521 12.8241 3.8521 14.4571 4.03355L16.0361 4.20899C18.0117 4.4285 19.5713 5.98806 19.7908 7.96367L19.9662 9.54267ZM7.77065 2.4697C4.98157 2.77959 2.77984 4.98132 2.46994 7.77041L2.2945 9.34941C2.09877 11.1109 2.09877 12.8886 2.2945 14.6501L2.46994 16.2291C2.77984 19.0182 4.98157 21.2199 7.77065 21.5298L9.34966 21.7053C11.1111 21.901 12.8889 21.901 14.6504 21.7053L16.2294 21.5298C19.0185 21.2199 21.2202 19.0182 21.5301 16.2291L21.7055 14.6501C21.9012 12.8886 21.9012 11.1109 21.7055 9.34941L21.5301 7.77041C21.2202 4.98133 19.0185 2.77959 16.2294 2.4697L14.6504 2.29425C12.8889 2.09853 11.1111 2.09853 9.34966 2.29425L7.77065 2.4697ZM13.25 8.75C13.25 9.44036 12.6904 10 12 10C11.3096 10 10.75 9.44036 10.75 8.75C10.75 8.05964 11.3096 7.5 12 7.5C12.6904 7.5 13.25 8.05964 13.25 8.75ZM12 11C11.4477 11 11 11.4925 11 12.1V15.4C11 16.0075 11.4477 16.5 12 16.5C12.5523 16.5 13 16.0075 13 15.4V12.1C13 11.4925 12.5523 11 12 11Z\"\n />,\n 'InfoSquareOutlinedLight',\n);\n"],"mappings":";;;;;;;AAAA;;AACA;;AACA;;;;eAEe,IAAAA,sBAAA,gBACX,6BAAC,oBAAD;EACI,CAAC,EAAC;AADN,EADW,EAIX,yBAJW,C"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
11
|
+
|
|
12
|
+
var _createSvgIcon = _interopRequireDefault(require("../utils/createSvgIcon"));
|
|
13
|
+
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
|
|
16
|
+
var _default = (0, _createSvgIcon.default)( /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
|
|
17
|
+
d: "M5.25 6.5C4.42157 6.5 3.75 7.17157 3.75 8C3.75 8.82843 4.42157 9.5 5.25 9.5C6.07843 9.5 6.75 8.82843 6.75 8C6.75 7.17157 6.07843 6.5 5.25 6.5ZM9.5 6.75C8.80964 6.75 8.25 7.30964 8.25 8C8.25 8.69036 8.80964 9.25 9.5 9.25H19C19.6904 9.25 20.25 8.69036 20.25 8C20.25 7.30964 19.6904 6.75 19 6.75H9.5ZM5.25 10.5C4.42157 10.5 3.75 11.1716 3.75 12C3.75 12.8284 4.42157 13.5 5.25 13.5C6.07843 13.5 6.75 12.8284 6.75 12C6.75 11.1716 6.07843 10.5 5.25 10.5ZM9.5 10.75C8.80964 10.75 8.25 11.3096 8.25 12C8.25 12.6904 8.80964 13.25 9.5 13.25H16C16.6904 13.25 17.25 12.6904 17.25 12C17.25 11.3096 16.6904 10.75 16 10.75H9.5ZM5.25 14.5C4.42157 14.5 3.75 15.1716 3.75 16C3.75 16.8284 4.42157 17.5 5.25 17.5C6.07843 17.5 6.75 16.8284 6.75 16C6.75 15.1716 6.07843 14.5 5.25 14.5ZM9.5 14.75C8.80964 14.75 8.25 15.3096 8.25 16C8.25 16.6904 8.80964 17.25 9.5 17.25H13C13.6904 17.25 14.25 16.6904 14.25 16C14.25 15.3096 13.6904 14.75 13 14.75H9.5Z"
|
|
18
|
+
}), 'ListFilled');
|
|
19
|
+
|
|
20
|
+
exports.default = _default;
|
|
21
|
+
//# sourceMappingURL=ListFilled.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["createSvgIcon"],"sources":["ListFilled.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M5.25 6.5C4.42157 6.5 3.75 7.17157 3.75 8C3.75 8.82843 4.42157 9.5 5.25 9.5C6.07843 9.5 6.75 8.82843 6.75 8C6.75 7.17157 6.07843 6.5 5.25 6.5ZM9.5 6.75C8.80964 6.75 8.25 7.30964 8.25 8C8.25 8.69036 8.80964 9.25 9.5 9.25H19C19.6904 9.25 20.25 8.69036 20.25 8C20.25 7.30964 19.6904 6.75 19 6.75H9.5ZM5.25 10.5C4.42157 10.5 3.75 11.1716 3.75 12C3.75 12.8284 4.42157 13.5 5.25 13.5C6.07843 13.5 6.75 12.8284 6.75 12C6.75 11.1716 6.07843 10.5 5.25 10.5ZM9.5 10.75C8.80964 10.75 8.25 11.3096 8.25 12C8.25 12.6904 8.80964 13.25 9.5 13.25H16C16.6904 13.25 17.25 12.6904 17.25 12C17.25 11.3096 16.6904 10.75 16 10.75H9.5ZM5.25 14.5C4.42157 14.5 3.75 15.1716 3.75 16C3.75 16.8284 4.42157 17.5 5.25 17.5C6.07843 17.5 6.75 16.8284 6.75 16C6.75 15.1716 6.07843 14.5 5.25 14.5ZM9.5 14.75C8.80964 14.75 8.25 15.3096 8.25 16C8.25 16.6904 8.80964 17.25 9.5 17.25H13C13.6904 17.25 14.25 16.6904 14.25 16C14.25 15.3096 13.6904 14.75 13 14.75H9.5Z\"\n />,\n 'ListFilled',\n);\n"],"mappings":";;;;;;;AAAA;;AACA;;AACA;;;;eAEe,IAAAA,sBAAA,gBACX,6BAAC,oBAAD;EACI,CAAC,EAAC;AADN,EADW,EAIX,YAJW,C"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
11
|
+
|
|
12
|
+
var _createSvgIcon = _interopRequireDefault(require("../utils/createSvgIcon"));
|
|
13
|
+
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
|
|
16
|
+
var _default = (0, _createSvgIcon.default)( /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
|
|
17
|
+
d: "M2.75 7.5C2.75 8.19036 3.30964 8.75 4 8.75C4.69036 8.75 5.25 8.19036 5.25 7.5C5.25 6.80964 4.69036 6.25 4 6.25C3.30964 6.25 2.75 6.80964 2.75 7.5ZM7.5 7.5C7.5 6.94772 7.94772 6.5 8.5 6.5H20C20.5523 6.5 21 6.94772 21 7.5C21 8.05228 20.5523 8.5 20 8.5H8.5C7.94772 8.5 7.5 8.05228 7.5 7.5ZM7.5 12C7.5 11.4477 7.94772 11 8.5 11H17C17.5523 11 18 11.4477 18 12C18 12.5523 17.5523 13 17 13H8.5C7.94772 13 7.5 12.5523 7.5 12ZM8.5 15.5C7.94772 15.5 7.5 15.9477 7.5 16.5C7.5 17.0523 7.94772 17.5 8.5 17.5H14C14.5523 17.5 15 17.0523 15 16.5C15 15.9477 14.5523 15.5 14 15.5H8.5ZM2.75 12C2.75 12.6904 3.30964 13.25 4 13.25C4.69036 13.25 5.25 12.6904 5.25 12C5.25 11.3096 4.69036 10.75 4 10.75C3.30964 10.75 2.75 11.3096 2.75 12ZM2.75 16.5C2.75 17.1904 3.30964 17.75 4 17.75C4.69036 17.75 5.25 17.1904 5.25 16.5C5.25 15.8096 4.69036 15.25 4 15.25C3.30964 15.25 2.75 15.8096 2.75 16.5Z"
|
|
18
|
+
}), 'ListOutlined');
|
|
19
|
+
|
|
20
|
+
exports.default = _default;
|
|
21
|
+
//# sourceMappingURL=ListOutlined.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["createSvgIcon"],"sources":["ListOutlined.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M2.75 7.5C2.75 8.19036 3.30964 8.75 4 8.75C4.69036 8.75 5.25 8.19036 5.25 7.5C5.25 6.80964 4.69036 6.25 4 6.25C3.30964 6.25 2.75 6.80964 2.75 7.5ZM7.5 7.5C7.5 6.94772 7.94772 6.5 8.5 6.5H20C20.5523 6.5 21 6.94772 21 7.5C21 8.05228 20.5523 8.5 20 8.5H8.5C7.94772 8.5 7.5 8.05228 7.5 7.5ZM7.5 12C7.5 11.4477 7.94772 11 8.5 11H17C17.5523 11 18 11.4477 18 12C18 12.5523 17.5523 13 17 13H8.5C7.94772 13 7.5 12.5523 7.5 12ZM8.5 15.5C7.94772 15.5 7.5 15.9477 7.5 16.5C7.5 17.0523 7.94772 17.5 8.5 17.5H14C14.5523 17.5 15 17.0523 15 16.5C15 15.9477 14.5523 15.5 14 15.5H8.5ZM2.75 12C2.75 12.6904 3.30964 13.25 4 13.25C4.69036 13.25 5.25 12.6904 5.25 12C5.25 11.3096 4.69036 10.75 4 10.75C3.30964 10.75 2.75 11.3096 2.75 12ZM2.75 16.5C2.75 17.1904 3.30964 17.75 4 17.75C4.69036 17.75 5.25 17.1904 5.25 16.5C5.25 15.8096 4.69036 15.25 4 15.25C3.30964 15.25 2.75 15.8096 2.75 16.5Z\"\n />,\n 'ListOutlined',\n);\n"],"mappings":";;;;;;;AAAA;;AACA;;AACA;;;;eAEe,IAAAA,sBAAA,gBACX,6BAAC,oBAAD;EACI,CAAC,EAAC;AADN,EADW,EAIX,cAJW,C"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
11
|
+
|
|
12
|
+
var _createSvgIcon = _interopRequireDefault(require("../utils/createSvgIcon"));
|
|
13
|
+
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
|
|
16
|
+
var _default = (0, _createSvgIcon.default)( /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
|
|
17
|
+
d: "M4 6.5C3.44772 6.5 3 6.94772 3 7.5C3 8.05228 3.44772 8.5 4 8.5C4.55228 8.5 5 8.05228 5 7.5C5 6.94772 4.55228 6.5 4 6.5ZM8.5 6.625C8.01675 6.625 7.625 7.01675 7.625 7.5C7.625 7.98325 8.01675 8.375 8.5 8.375H20C20.4832 8.375 20.875 7.98325 20.875 7.5C20.875 7.01675 20.4832 6.625 20 6.625H8.5ZM8.5 11.125C8.01675 11.125 7.625 11.5168 7.625 12C7.625 12.4832 8.01675 12.875 8.5 12.875H17C17.4832 12.875 17.875 12.4832 17.875 12C17.875 11.5168 17.4832 11.125 17 11.125H8.5ZM7.625 16.5C7.625 16.0168 8.01675 15.625 8.5 15.625H14C14.4832 15.625 14.875 16.0168 14.875 16.5C14.875 16.9832 14.4832 17.375 14 17.375H8.5C8.01675 17.375 7.625 16.9832 7.625 16.5ZM3 12C3 11.4477 3.44772 11 4 11C4.55228 11 5 11.4477 5 12C5 12.5523 4.55228 13 4 13C3.44772 13 3 12.5523 3 12ZM4 15.5C3.44772 15.5 3 15.9477 3 16.5C3 17.0523 3.44772 17.5 4 17.5C4.55228 17.5 5 17.0523 5 16.5C5 15.9477 4.55228 15.5 4 15.5Z"
|
|
18
|
+
}), 'ListOutlinedLight');
|
|
19
|
+
|
|
20
|
+
exports.default = _default;
|
|
21
|
+
//# sourceMappingURL=ListOutlinedLight.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["createSvgIcon"],"sources":["ListOutlinedLight.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M4 6.5C3.44772 6.5 3 6.94772 3 7.5C3 8.05228 3.44772 8.5 4 8.5C4.55228 8.5 5 8.05228 5 7.5C5 6.94772 4.55228 6.5 4 6.5ZM8.5 6.625C8.01675 6.625 7.625 7.01675 7.625 7.5C7.625 7.98325 8.01675 8.375 8.5 8.375H20C20.4832 8.375 20.875 7.98325 20.875 7.5C20.875 7.01675 20.4832 6.625 20 6.625H8.5ZM8.5 11.125C8.01675 11.125 7.625 11.5168 7.625 12C7.625 12.4832 8.01675 12.875 8.5 12.875H17C17.4832 12.875 17.875 12.4832 17.875 12C17.875 11.5168 17.4832 11.125 17 11.125H8.5ZM7.625 16.5C7.625 16.0168 8.01675 15.625 8.5 15.625H14C14.4832 15.625 14.875 16.0168 14.875 16.5C14.875 16.9832 14.4832 17.375 14 17.375H8.5C8.01675 17.375 7.625 16.9832 7.625 16.5ZM3 12C3 11.4477 3.44772 11 4 11C4.55228 11 5 11.4477 5 12C5 12.5523 4.55228 13 4 13C3.44772 13 3 12.5523 3 12ZM4 15.5C3.44772 15.5 3 15.9477 3 16.5C3 17.0523 3.44772 17.5 4 17.5C4.55228 17.5 5 17.0523 5 16.5C5 15.9477 4.55228 15.5 4 15.5Z\"\n />,\n 'ListOutlinedLight',\n);\n"],"mappings":";;;;;;;AAAA;;AACA;;AACA;;;;eAEe,IAAAA,sBAAA,gBACX,6BAAC,oBAAD;EACI,CAAC,EAAC;AADN,EADW,EAIX,mBAJW,C"}
|
package/build/commonjs/index.js
CHANGED
|
@@ -159,6 +159,24 @@ Object.defineProperty(exports, "Close", {
|
|
|
159
159
|
return _Close.default;
|
|
160
160
|
}
|
|
161
161
|
});
|
|
162
|
+
Object.defineProperty(exports, "ContentFilled", {
|
|
163
|
+
enumerable: true,
|
|
164
|
+
get: function () {
|
|
165
|
+
return _ContentFilled.default;
|
|
166
|
+
}
|
|
167
|
+
});
|
|
168
|
+
Object.defineProperty(exports, "ContentOutlined", {
|
|
169
|
+
enumerable: true,
|
|
170
|
+
get: function () {
|
|
171
|
+
return _ContentOutlined.default;
|
|
172
|
+
}
|
|
173
|
+
});
|
|
174
|
+
Object.defineProperty(exports, "ContentOutlinedLight", {
|
|
175
|
+
enumerable: true,
|
|
176
|
+
get: function () {
|
|
177
|
+
return _ContentOutlinedLight.default;
|
|
178
|
+
}
|
|
179
|
+
});
|
|
162
180
|
Object.defineProperty(exports, "CopyFilled", {
|
|
163
181
|
enumerable: true,
|
|
164
182
|
get: function () {
|
|
@@ -261,6 +279,24 @@ Object.defineProperty(exports, "Info", {
|
|
|
261
279
|
return _Info.default;
|
|
262
280
|
}
|
|
263
281
|
});
|
|
282
|
+
Object.defineProperty(exports, "InfoSquareFilled", {
|
|
283
|
+
enumerable: true,
|
|
284
|
+
get: function () {
|
|
285
|
+
return _InfoSquareFilled.default;
|
|
286
|
+
}
|
|
287
|
+
});
|
|
288
|
+
Object.defineProperty(exports, "InfoSquareOutlined", {
|
|
289
|
+
enumerable: true,
|
|
290
|
+
get: function () {
|
|
291
|
+
return _InfoSquareOutlined.default;
|
|
292
|
+
}
|
|
293
|
+
});
|
|
294
|
+
Object.defineProperty(exports, "InfoSquareOutlinedLight", {
|
|
295
|
+
enumerable: true,
|
|
296
|
+
get: function () {
|
|
297
|
+
return _InfoSquareOutlinedLight.default;
|
|
298
|
+
}
|
|
299
|
+
});
|
|
264
300
|
Object.defineProperty(exports, "Instagram", {
|
|
265
301
|
enumerable: true,
|
|
266
302
|
get: function () {
|
|
@@ -285,6 +321,24 @@ Object.defineProperty(exports, "List", {
|
|
|
285
321
|
return _List.default;
|
|
286
322
|
}
|
|
287
323
|
});
|
|
324
|
+
Object.defineProperty(exports, "ListFilled", {
|
|
325
|
+
enumerable: true,
|
|
326
|
+
get: function () {
|
|
327
|
+
return _ListFilled.default;
|
|
328
|
+
}
|
|
329
|
+
});
|
|
330
|
+
Object.defineProperty(exports, "ListOutlined", {
|
|
331
|
+
enumerable: true,
|
|
332
|
+
get: function () {
|
|
333
|
+
return _ListOutlined.default;
|
|
334
|
+
}
|
|
335
|
+
});
|
|
336
|
+
Object.defineProperty(exports, "ListOutlinedLight", {
|
|
337
|
+
enumerable: true,
|
|
338
|
+
get: function () {
|
|
339
|
+
return _ListOutlinedLight.default;
|
|
340
|
+
}
|
|
341
|
+
});
|
|
288
342
|
Object.defineProperty(exports, "Logo", {
|
|
289
343
|
enumerable: true,
|
|
290
344
|
get: function () {
|
|
@@ -524,6 +578,12 @@ var _ClockTwoTone = _interopRequireDefault(require("./icons/ClockTwoTone"));
|
|
|
524
578
|
|
|
525
579
|
var _Close = _interopRequireDefault(require("./icons/Close"));
|
|
526
580
|
|
|
581
|
+
var _ContentFilled = _interopRequireDefault(require("./icons/ContentFilled"));
|
|
582
|
+
|
|
583
|
+
var _ContentOutlined = _interopRequireDefault(require("./icons/ContentOutlined"));
|
|
584
|
+
|
|
585
|
+
var _ContentOutlinedLight = _interopRequireDefault(require("./icons/ContentOutlinedLight"));
|
|
586
|
+
|
|
527
587
|
var _CopyFilled = _interopRequireDefault(require("./icons/CopyFilled"));
|
|
528
588
|
|
|
529
589
|
var _Expand = _interopRequireDefault(require("./icons/Expand"));
|
|
@@ -558,6 +618,12 @@ var _HomeOutlined = _interopRequireDefault(require("./icons/HomeOutlined"));
|
|
|
558
618
|
|
|
559
619
|
var _Info = _interopRequireDefault(require("./icons/Info"));
|
|
560
620
|
|
|
621
|
+
var _InfoSquareFilled = _interopRequireDefault(require("./icons/InfoSquareFilled"));
|
|
622
|
+
|
|
623
|
+
var _InfoSquareOutlined = _interopRequireDefault(require("./icons/InfoSquareOutlined"));
|
|
624
|
+
|
|
625
|
+
var _InfoSquareOutlinedLight = _interopRequireDefault(require("./icons/InfoSquareOutlinedLight"));
|
|
626
|
+
|
|
561
627
|
var _Instagram = _interopRequireDefault(require("./icons/Instagram"));
|
|
562
628
|
|
|
563
629
|
var _LibraryFilled = _interopRequireDefault(require("./icons/LibraryFilled"));
|
|
@@ -566,6 +632,12 @@ var _LibraryOutlined = _interopRequireDefault(require("./icons/LibraryOutlined")
|
|
|
566
632
|
|
|
567
633
|
var _List = _interopRequireDefault(require("./icons/List"));
|
|
568
634
|
|
|
635
|
+
var _ListFilled = _interopRequireDefault(require("./icons/ListFilled"));
|
|
636
|
+
|
|
637
|
+
var _ListOutlined = _interopRequireDefault(require("./icons/ListOutlined"));
|
|
638
|
+
|
|
639
|
+
var _ListOutlinedLight = _interopRequireDefault(require("./icons/ListOutlinedLight"));
|
|
640
|
+
|
|
569
641
|
var _Logo = _interopRequireDefault(require("./icons/Logo"));
|
|
570
642
|
|
|
571
643
|
var _MailFilled = _interopRequireDefault(require("./icons/MailFilled"));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export { default as ActionTwoTone } from './icons/ActionTwoTone';\nexport { default as Add } from './icons/Add';\nexport { default as Apple } from './icons/Apple';\nexport { default as ArrowLeft } from './icons/ArrowLeft';\nexport { default as ArrowLightHorizontalFilled } from './icons/ArrowLightHorizontalFilled';\nexport { default as ArrowLightHorizontalOutlined } from './icons/ArrowLightHorizontalOutlined';\nexport { default as ArrowLightVerticalFilled } from './icons/ArrowLightVerticalFilled';\nexport { default as ArrowLightVerticalOutlined } from './icons/ArrowLightVerticalOutlined';\nexport { default as ArrowRight } from './icons/ArrowRight';\nexport { default as BellOff } from './icons/BellOff';\nexport { default as BellOn } from './icons/BellOn';\nexport { default as BellOutlined } from './icons/BellOutlined';\nexport { default as Bullet } from './icons/Bullet';\nexport { default as CalendarOutlined } from './icons/CalendarOutlined';\nexport { default as Check } from './icons/Check';\nexport { default as CheckboxChecked } from './icons/CheckboxChecked';\nexport { default as CheckCircleFilled } from './icons/CheckCircleFilled';\nexport { default as CheckCircleOutlined } from './icons/CheckCircleOutlined';\nexport { default as ChevronDown } from './icons/ChevronDown';\nexport { default as ChevronRight } from './icons/ChevronRight';\nexport { default as ChevronUp } from './icons/ChevronUp';\nexport { default as ChevronLeft } from './icons/ChevronLeft';\nexport { default as ClockFilled } from './icons/ClockFilled';\nexport { default as ClockOutlined } from './icons/ClockOutlined';\nexport { default as ClockTwoTone } from './icons/ClockTwoTone';\nexport { default as Close } from './icons/Close';\nexport { default as CopyFilled } from './icons/CopyFilled';\nexport { default as Expand } from './icons/Expand';\nexport { default as EyeOff } from './icons/EyeOff';\nexport { default as EyeOutlined } from './icons/EyeOutlined';\nexport { default as Facebook } from './icons/Facebook';\nexport { default as FontLato } from './icons/FontLato';\nexport { default as FontLiterata } from './icons/FontLiterata';\nexport { default as GiftOutlined } from './icons/GiftOutlined';\nexport { default as GiftTwoTone } from './icons/GiftTwoTone';\nexport { default as Google } from './icons/Google';\nexport { default as GraphUp } from './icons/GraphUp';\nexport { default as HdOff } from './icons/HdOff';\nexport { default as HdOn } from './icons/HdOn';\nexport { default as Help } from './icons/Help';\nexport { default as HomeFilled } from './icons/HomeFilled';\nexport { default as HomeOutlined } from './icons/HomeOutlined';\nexport { default as Info } from './icons/Info';\nexport { default as Instagram } from './icons/Instagram';\nexport { default as LibraryFilled } from './icons/LibraryFilled';\nexport { default as LibraryOutlined } from './icons/LibraryOutlined';\nexport { default as List } from './icons/List';\nexport { default as Logo } from './icons/Logo';\nexport { default as MailFilled } from './icons/MailFilled';\nexport { default as MailOutlined } from './icons/MailOutlined';\nexport { default as MenuFilled } from './icons/MenuFilled';\nexport { default as MenuOutlined } from './icons/MenuOutlined';\nexport { default as MinusCircle } from './icons/MinusCircle';\nexport { default as Nib } from './icons/Nib';\nexport { default as Pencil } from './icons/Pencil';\nexport { default as Point } from './icons/Point';\nexport { default as Radio } from './icons/Radio';\nexport { default as RadioChecked } from './icons/RadioChecked';\nexport { default as Restart } from './icons/Restart';\nexport { default as SaleOutlined } from './icons/SaleOutlined';\nexport { default as SaleTwoTone } from './icons/SaleTwoTone';\nexport { default as Search } from './icons/Search';\nexport { default as Share } from './icons/Share';\nexport { default as SpacingLargeFilled } from './icons/SpacingLargeFilled';\nexport { default as SpacingLargeOutlined } from './icons/SpacingLargeOutlined';\nexport { default as SpacingMediumFilled } from './icons/SpacingMediumFilled';\nexport { default as SpacingMediumOutlined } from './icons/SpacingMediumOutlined';\nexport { default as SpacingSmallFilled } from './icons/SpacingSmallFilled';\nexport { default as SpacingSmallOutlined } from './icons/SpacingSmallOutlined';\nexport { default as Speaker } from './icons/Speaker';\nexport { default as SwapHorizontal } from './icons/SwapHorizontal';\nexport { default as SwapVertical } from './icons/SwapVertical';\nexport { default as TicketOutlined } from './icons/TicketOutlined';\nexport { default as TicketTwoTone } from './icons/TicketTwoTone';\nexport { default as TokenFilled } from './icons/TokenFilled';\nexport { default as Twitter } from './icons/Twitter';\nexport { default as Warning } from './icons/Warning';\nexport { default as Youtube } from './icons/Youtube';\n"],"mappings":"
|
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export { default as ActionTwoTone } from './icons/ActionTwoTone';\nexport { default as Add } from './icons/Add';\nexport { default as Apple } from './icons/Apple';\nexport { default as ArrowLeft } from './icons/ArrowLeft';\nexport { default as ArrowLightHorizontalFilled } from './icons/ArrowLightHorizontalFilled';\nexport { default as ArrowLightHorizontalOutlined } from './icons/ArrowLightHorizontalOutlined';\nexport { default as ArrowLightVerticalFilled } from './icons/ArrowLightVerticalFilled';\nexport { default as ArrowLightVerticalOutlined } from './icons/ArrowLightVerticalOutlined';\nexport { default as ArrowRight } from './icons/ArrowRight';\nexport { default as BellOff } from './icons/BellOff';\nexport { default as BellOn } from './icons/BellOn';\nexport { default as BellOutlined } from './icons/BellOutlined';\nexport { default as Bullet } from './icons/Bullet';\nexport { default as CalendarOutlined } from './icons/CalendarOutlined';\nexport { default as Check } from './icons/Check';\nexport { default as CheckboxChecked } from './icons/CheckboxChecked';\nexport { default as CheckCircleFilled } from './icons/CheckCircleFilled';\nexport { default as CheckCircleOutlined } from './icons/CheckCircleOutlined';\nexport { default as ChevronDown } from './icons/ChevronDown';\nexport { default as ChevronRight } from './icons/ChevronRight';\nexport { default as ChevronUp } from './icons/ChevronUp';\nexport { default as ChevronLeft } from './icons/ChevronLeft';\nexport { default as ClockFilled } from './icons/ClockFilled';\nexport { default as ClockOutlined } from './icons/ClockOutlined';\nexport { default as ClockTwoTone } from './icons/ClockTwoTone';\nexport { default as Close } from './icons/Close';\nexport { default as ContentFilled } from './icons/ContentFilled';\nexport { default as ContentOutlined } from './icons/ContentOutlined';\nexport { default as ContentOutlinedLight } from './icons/ContentOutlinedLight';\nexport { default as CopyFilled } from './icons/CopyFilled';\nexport { default as Expand } from './icons/Expand';\nexport { default as EyeOff } from './icons/EyeOff';\nexport { default as EyeOutlined } from './icons/EyeOutlined';\nexport { default as Facebook } from './icons/Facebook';\nexport { default as FontLato } from './icons/FontLato';\nexport { default as FontLiterata } from './icons/FontLiterata';\nexport { default as GiftOutlined } from './icons/GiftOutlined';\nexport { default as GiftTwoTone } from './icons/GiftTwoTone';\nexport { default as Google } from './icons/Google';\nexport { default as GraphUp } from './icons/GraphUp';\nexport { default as HdOff } from './icons/HdOff';\nexport { default as HdOn } from './icons/HdOn';\nexport { default as Help } from './icons/Help';\nexport { default as HomeFilled } from './icons/HomeFilled';\nexport { default as HomeOutlined } from './icons/HomeOutlined';\nexport { default as Info } from './icons/Info';\nexport { default as InfoSquareFilled } from './icons/InfoSquareFilled';\nexport { default as InfoSquareOutlined } from './icons/InfoSquareOutlined';\nexport { default as InfoSquareOutlinedLight } from './icons/InfoSquareOutlinedLight';\nexport { default as Instagram } from './icons/Instagram';\nexport { default as LibraryFilled } from './icons/LibraryFilled';\nexport { default as LibraryOutlined } from './icons/LibraryOutlined';\nexport { default as List } from './icons/List';\nexport { default as ListFilled } from './icons/ListFilled';\nexport { default as ListOutlined } from './icons/ListOutlined';\nexport { default as ListOutlinedLight } from './icons/ListOutlinedLight';\nexport { default as Logo } from './icons/Logo';\nexport { default as MailFilled } from './icons/MailFilled';\nexport { default as MailOutlined } from './icons/MailOutlined';\nexport { default as MenuFilled } from './icons/MenuFilled';\nexport { default as MenuOutlined } from './icons/MenuOutlined';\nexport { default as MinusCircle } from './icons/MinusCircle';\nexport { default as Nib } from './icons/Nib';\nexport { default as Pencil } from './icons/Pencil';\nexport { default as Point } from './icons/Point';\nexport { default as Radio } from './icons/Radio';\nexport { default as RadioChecked } from './icons/RadioChecked';\nexport { default as Restart } from './icons/Restart';\nexport { default as SaleOutlined } from './icons/SaleOutlined';\nexport { default as SaleTwoTone } from './icons/SaleTwoTone';\nexport { default as Search } from './icons/Search';\nexport { default as Share } from './icons/Share';\nexport { default as SpacingLargeFilled } from './icons/SpacingLargeFilled';\nexport { default as SpacingLargeOutlined } from './icons/SpacingLargeOutlined';\nexport { default as SpacingMediumFilled } from './icons/SpacingMediumFilled';\nexport { default as SpacingMediumOutlined } from './icons/SpacingMediumOutlined';\nexport { default as SpacingSmallFilled } from './icons/SpacingSmallFilled';\nexport { default as SpacingSmallOutlined } from './icons/SpacingSmallOutlined';\nexport { default as Speaker } from './icons/Speaker';\nexport { default as SwapHorizontal } from './icons/SwapHorizontal';\nexport { default as SwapVertical } from './icons/SwapVertical';\nexport { default as TicketOutlined } from './icons/TicketOutlined';\nexport { default as TicketTwoTone } from './icons/TicketTwoTone';\nexport { default as TokenFilled } from './icons/TokenFilled';\nexport { default as Twitter } from './icons/Twitter';\nexport { default as Warning } from './icons/Warning';\nexport { default as Youtube } from './icons/Youtube';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import createSvgIcon from '../utils/createSvgIcon';
|
|
4
|
+
export default createSvgIcon( /*#__PURE__*/React.createElement(Path, {
|
|
5
|
+
d: "M3 6.62443C3 5.67708 3.66465 4.85968 4.59209 4.66647L12.5921 2.9998C13.8341 2.74106 15 3.68913 15 4.95776V19.0385C15 20.3072 13.8341 21.2552 12.5921 20.9965L4.59209 19.3298C3.66465 19.1366 3 18.3192 3 17.3719V6.62443ZM16 5H17C17.5523 5 18 5.44772 18 6V18C18 18.5523 17.5523 19 17 19H16V5ZM20 7H19V17H20C20.5523 17 21 16.5523 21 16V8C21 7.44772 20.5523 7 20 7Z"
|
|
6
|
+
}), 'ContentFilled');
|
|
7
|
+
//# sourceMappingURL=ContentFilled.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","Path","createSvgIcon"],"sources":["ContentFilled.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M3 6.62443C3 5.67708 3.66465 4.85968 4.59209 4.66647L12.5921 2.9998C13.8341 2.74106 15 3.68913 15 4.95776V19.0385C15 20.3072 13.8341 21.2552 12.5921 20.9965L4.59209 19.3298C3.66465 19.1366 3 18.3192 3 17.3719V6.62443ZM16 5H17C17.5523 5 18 5.44772 18 6V18C18 18.5523 17.5523 19 17 19H16V5ZM20 7H19V17H20C20.5523 17 21 16.5523 21 16V8C21 7.44772 20.5523 7 20 7Z\"\n />,\n 'ContentFilled',\n);\n"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,IAAT,QAAqB,kBAArB;AACA,OAAOC,aAAP,MAA0B,wBAA1B;AAEA,eAAeA,aAAa,eACxB,oBAAC,IAAD;EACI,CAAC,EAAC;AADN,EADwB,EAIxB,eAJwB,CAA5B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import createSvgIcon from '../utils/createSvgIcon';
|
|
4
|
+
export default createSvgIcon( /*#__PURE__*/React.createElement(Path, {
|
|
5
|
+
d: "M13 4.95776L13 19.0385L5 17.3719L5 6.62443L13 4.95776ZM4.59209 4.66647C3.66465 4.85968 3 5.67708 3 6.62443V17.3719C3 18.3192 3.66465 19.1366 4.59209 19.3298L12.5921 20.9965C13.8341 21.2552 15 20.3072 15 19.0385V4.95776C15 3.68913 13.8341 2.74106 12.5921 2.9998L4.59209 4.66647ZM16 5H17C17.5523 5 18 5.44772 18 6V18C18 18.5523 17.5523 19 17 19H16V5ZM20 7H19V17H20C20.5523 17 21 16.5523 21 16V8C21 7.44772 20.5523 7 20 7Z"
|
|
6
|
+
}), 'ContentOutlined');
|
|
7
|
+
//# sourceMappingURL=ContentOutlined.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","Path","createSvgIcon"],"sources":["ContentOutlined.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M13 4.95776L13 19.0385L5 17.3719L5 6.62443L13 4.95776ZM4.59209 4.66647C3.66465 4.85968 3 5.67708 3 6.62443V17.3719C3 18.3192 3.66465 19.1366 4.59209 19.3298L12.5921 20.9965C13.8341 21.2552 15 20.3072 15 19.0385V4.95776C15 3.68913 13.8341 2.74106 12.5921 2.9998L4.59209 4.66647ZM16 5H17C17.5523 5 18 5.44772 18 6V18C18 18.5523 17.5523 19 17 19H16V5ZM20 7H19V17H20C20.5523 17 21 16.5523 21 16V8C21 7.44772 20.5523 7 20 7Z\"\n />,\n 'ContentOutlined',\n);\n"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,IAAT,QAAqB,kBAArB;AACA,OAAOC,aAAP,MAA0B,wBAA1B;AAEA,eAAeA,aAAa,eACxB,oBAAC,IAAD;EACI,CAAC,EAAC;AADN,EADwB,EAIxB,iBAJwB,CAA5B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import createSvgIcon from '../utils/createSvgIcon';
|
|
4
|
+
export default createSvgIcon( /*#__PURE__*/React.createElement(Path, {
|
|
5
|
+
d: "M12.949 4.71497C13.1043 4.68263 13.25 4.80113 13.25 4.95971V19.0405C13.25 19.1991 13.1043 19.3176 12.949 19.2852L4.94901 17.6186C4.83308 17.5944 4.75 17.4923 4.75 17.3738V6.62638C4.75 6.50796 4.83308 6.40579 4.94901 6.38164L12.949 4.71497ZM4.59209 4.66842C3.66465 4.86164 3 5.67903 3 6.62638V17.3738C3 18.3212 3.66465 19.1386 4.59209 19.3318L12.5921 20.9985C13.8341 21.2572 15 20.3091 15 19.0405V4.95971C15 3.69109 13.8341 2.74301 12.5921 3.00175L4.59209 4.66842ZM16.25 5H17C17.5523 5 18 5.44772 18 6V18C18 18.5523 17.5523 19 17 19H16.25V5ZM20 7H19.25V17H20C20.5523 17 21 16.5523 21 16V8C21 7.44772 20.5523 7 20 7Z"
|
|
6
|
+
}), 'ContentOutlinedLight');
|
|
7
|
+
//# sourceMappingURL=ContentOutlinedLight.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","Path","createSvgIcon"],"sources":["ContentOutlinedLight.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M12.949 4.71497C13.1043 4.68263 13.25 4.80113 13.25 4.95971V19.0405C13.25 19.1991 13.1043 19.3176 12.949 19.2852L4.94901 17.6186C4.83308 17.5944 4.75 17.4923 4.75 17.3738V6.62638C4.75 6.50796 4.83308 6.40579 4.94901 6.38164L12.949 4.71497ZM4.59209 4.66842C3.66465 4.86164 3 5.67903 3 6.62638V17.3738C3 18.3212 3.66465 19.1386 4.59209 19.3318L12.5921 20.9985C13.8341 21.2572 15 20.3091 15 19.0405V4.95971C15 3.69109 13.8341 2.74301 12.5921 3.00175L4.59209 4.66842ZM16.25 5H17C17.5523 5 18 5.44772 18 6V18C18 18.5523 17.5523 19 17 19H16.25V5ZM20 7H19.25V17H20C20.5523 17 21 16.5523 21 16V8C21 7.44772 20.5523 7 20 7Z\"\n />,\n 'ContentOutlinedLight',\n);\n"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,IAAT,QAAqB,kBAArB;AACA,OAAOC,aAAP,MAA0B,wBAA1B;AAEA,eAAeA,aAAa,eACxB,oBAAC,IAAD;EACI,CAAC,EAAC;AADN,EADwB,EAIxB,sBAJwB,CAA5B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import createSvgIcon from '../utils/createSvgIcon';
|
|
4
|
+
export default createSvgIcon( /*#__PURE__*/React.createElement(Path, {
|
|
5
|
+
d: "M7.77065 2.4697C4.98157 2.77959 2.77984 4.98132 2.46994 7.77041L2.2945 9.34941C2.09877 11.1109 2.09877 12.8886 2.2945 14.6501L2.46994 16.2291C2.77984 19.0182 4.98157 21.2199 7.77065 21.5298L9.34966 21.7053C11.1111 21.901 12.8889 21.901 14.6504 21.7053L16.2294 21.5298C19.0185 21.2199 21.2202 19.0182 21.5301 16.2291L21.7055 14.6501C21.9013 12.8886 21.9013 11.1109 21.7055 9.34941L21.5301 7.77041C21.2202 4.98133 19.0185 2.77959 16.2294 2.4697L14.6504 2.29425C12.8889 2.09853 11.1111 2.09853 9.34966 2.29425L7.77065 2.4697ZM13.25 8.75C13.25 9.44036 12.6904 10 12 10C11.3096 10 10.75 9.44036 10.75 8.75C10.75 8.05964 11.3096 7.5 12 7.5C12.6904 7.5 13.25 8.05964 13.25 8.75ZM11 12.1C11 11.4925 11.4477 11 12 11C12.5523 11 13 11.4925 13 12.1V15.4C13 16.0075 12.5523 16.5 12 16.5C11.4477 16.5 11 16.0075 11 15.4V12.1Z"
|
|
6
|
+
}), 'InfoSquareFilled');
|
|
7
|
+
//# sourceMappingURL=InfoSquareFilled.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","Path","createSvgIcon"],"sources":["InfoSquareFilled.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M7.77065 2.4697C4.98157 2.77959 2.77984 4.98132 2.46994 7.77041L2.2945 9.34941C2.09877 11.1109 2.09877 12.8886 2.2945 14.6501L2.46994 16.2291C2.77984 19.0182 4.98157 21.2199 7.77065 21.5298L9.34966 21.7053C11.1111 21.901 12.8889 21.901 14.6504 21.7053L16.2294 21.5298C19.0185 21.2199 21.2202 19.0182 21.5301 16.2291L21.7055 14.6501C21.9013 12.8886 21.9013 11.1109 21.7055 9.34941L21.5301 7.77041C21.2202 4.98133 19.0185 2.77959 16.2294 2.4697L14.6504 2.29425C12.8889 2.09853 11.1111 2.09853 9.34966 2.29425L7.77065 2.4697ZM13.25 8.75C13.25 9.44036 12.6904 10 12 10C11.3096 10 10.75 9.44036 10.75 8.75C10.75 8.05964 11.3096 7.5 12 7.5C12.6904 7.5 13.25 8.05964 13.25 8.75ZM11 12.1C11 11.4925 11.4477 11 12 11C12.5523 11 13 11.4925 13 12.1V15.4C13 16.0075 12.5523 16.5 12 16.5C11.4477 16.5 11 16.0075 11 15.4V12.1Z\"\n />,\n 'InfoSquareFilled',\n);\n"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,IAAT,QAAqB,kBAArB;AACA,OAAOC,aAAP,MAA0B,wBAA1B;AAEA,eAAeA,aAAa,eACxB,oBAAC,IAAD;EACI,CAAC,EAAC;AADN,EADwB,EAIxB,kBAJwB,CAA5B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import createSvgIcon from '../utils/createSvgIcon';
|
|
4
|
+
export default createSvgIcon( /*#__PURE__*/React.createElement(Path, {
|
|
5
|
+
d: "M16.5133 5.18863C17.6433 5.47112 18.5256 6.35342 18.8081 7.48341C19.5491 10.4477 19.5491 13.5489 18.8081 16.5133C18.5256 17.6433 17.6433 18.5256 16.5133 18.8081C13.5489 19.5491 10.4477 19.5491 7.48341 18.8081C6.35342 18.5256 5.47112 17.6433 5.18863 16.5133C4.44754 13.5489 4.44754 10.4477 5.18863 7.48341C5.47112 6.35342 6.35342 5.47112 7.48341 5.18863C10.4477 4.44754 13.5489 4.44754 16.5133 5.18863ZM6.99834 3.24834C5.15178 3.70998 3.70998 5.15178 3.24834 6.99834C2.42764 10.2812 2.42764 13.7155 3.24834 16.9983C3.70998 18.8449 5.15178 20.2867 6.99834 20.7483C10.2812 21.569 13.7155 21.569 16.9983 20.7483C18.8449 20.2867 20.2867 18.8449 20.7483 16.9983C21.569 13.7155 21.569 10.2812 20.7483 6.99834C20.2867 5.15178 18.8449 3.70998 16.9983 3.24834C13.7155 2.42764 10.2812 2.42764 6.99834 3.24834ZM13.25 8.75C13.25 9.44036 12.6904 10 12 10C11.3096 10 10.75 9.44036 10.75 8.75C10.75 8.05964 11.3096 7.5 12 7.5C12.6904 7.5 13.25 8.05964 13.25 8.75ZM12 11C11.4477 11 11 11.4925 11 12.1V15.4C11 16.0075 11.4477 16.5 12 16.5C12.5523 16.5 13 16.0075 13 15.4V12.1C13 11.4925 12.5523 11 12 11Z"
|
|
6
|
+
}), 'InfoSquareOutlined');
|
|
7
|
+
//# sourceMappingURL=InfoSquareOutlined.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","Path","createSvgIcon"],"sources":["InfoSquareOutlined.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M16.5133 5.18863C17.6433 5.47112 18.5256 6.35342 18.8081 7.48341C19.5491 10.4477 19.5491 13.5489 18.8081 16.5133C18.5256 17.6433 17.6433 18.5256 16.5133 18.8081C13.5489 19.5491 10.4477 19.5491 7.48341 18.8081C6.35342 18.5256 5.47112 17.6433 5.18863 16.5133C4.44754 13.5489 4.44754 10.4477 5.18863 7.48341C5.47112 6.35342 6.35342 5.47112 7.48341 5.18863C10.4477 4.44754 13.5489 4.44754 16.5133 5.18863ZM6.99834 3.24834C5.15178 3.70998 3.70998 5.15178 3.24834 6.99834C2.42764 10.2812 2.42764 13.7155 3.24834 16.9983C3.70998 18.8449 5.15178 20.2867 6.99834 20.7483C10.2812 21.569 13.7155 21.569 16.9983 20.7483C18.8449 20.2867 20.2867 18.8449 20.7483 16.9983C21.569 13.7155 21.569 10.2812 20.7483 6.99834C20.2867 5.15178 18.8449 3.70998 16.9983 3.24834C13.7155 2.42764 10.2812 2.42764 6.99834 3.24834ZM13.25 8.75C13.25 9.44036 12.6904 10 12 10C11.3096 10 10.75 9.44036 10.75 8.75C10.75 8.05964 11.3096 7.5 12 7.5C12.6904 7.5 13.25 8.05964 13.25 8.75ZM12 11C11.4477 11 11 11.4925 11 12.1V15.4C11 16.0075 11.4477 16.5 12 16.5C12.5523 16.5 13 16.0075 13 15.4V12.1C13 11.4925 12.5523 11 12 11Z\"\n />,\n 'InfoSquareOutlined',\n);\n"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,IAAT,QAAqB,kBAArB;AACA,OAAOC,aAAP,MAA0B,wBAA1B;AAEA,eAAeA,aAAa,eACxB,oBAAC,IAAD;EACI,CAAC,EAAC;AADN,EADwB,EAIxB,oBAJwB,CAA5B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import createSvgIcon from '../utils/createSvgIcon';
|
|
4
|
+
export default createSvgIcon( /*#__PURE__*/React.createElement(Path, {
|
|
5
|
+
d: "M19.9662 9.54267C20.1477 11.1757 20.1477 12.8238 19.9662 14.4569L19.7908 16.0359C19.5713 18.0115 18.0117 19.571 16.0361 19.7905L14.4571 19.966C12.8241 20.1474 11.176 20.1474 9.54291 19.966L7.96391 19.7905C5.98831 19.571 4.42875 18.0115 4.20924 16.0359L4.03379 14.4569C3.85234 12.8238 3.85234 11.1757 4.03379 9.54267L4.20924 7.96366C4.42875 5.98806 5.98831 4.4285 7.96391 4.20899L9.54291 4.03355C11.176 3.8521 12.8241 3.8521 14.4571 4.03355L16.0361 4.20899C18.0117 4.4285 19.5713 5.98806 19.7908 7.96367L19.9662 9.54267ZM7.77065 2.4697C4.98157 2.77959 2.77984 4.98132 2.46994 7.77041L2.2945 9.34941C2.09877 11.1109 2.09877 12.8886 2.2945 14.6501L2.46994 16.2291C2.77984 19.0182 4.98157 21.2199 7.77065 21.5298L9.34966 21.7053C11.1111 21.901 12.8889 21.901 14.6504 21.7053L16.2294 21.5298C19.0185 21.2199 21.2202 19.0182 21.5301 16.2291L21.7055 14.6501C21.9012 12.8886 21.9012 11.1109 21.7055 9.34941L21.5301 7.77041C21.2202 4.98133 19.0185 2.77959 16.2294 2.4697L14.6504 2.29425C12.8889 2.09853 11.1111 2.09853 9.34966 2.29425L7.77065 2.4697ZM13.25 8.75C13.25 9.44036 12.6904 10 12 10C11.3096 10 10.75 9.44036 10.75 8.75C10.75 8.05964 11.3096 7.5 12 7.5C12.6904 7.5 13.25 8.05964 13.25 8.75ZM12 11C11.4477 11 11 11.4925 11 12.1V15.4C11 16.0075 11.4477 16.5 12 16.5C12.5523 16.5 13 16.0075 13 15.4V12.1C13 11.4925 12.5523 11 12 11Z"
|
|
6
|
+
}), 'InfoSquareOutlinedLight');
|
|
7
|
+
//# sourceMappingURL=InfoSquareOutlinedLight.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","Path","createSvgIcon"],"sources":["InfoSquareOutlinedLight.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M19.9662 9.54267C20.1477 11.1757 20.1477 12.8238 19.9662 14.4569L19.7908 16.0359C19.5713 18.0115 18.0117 19.571 16.0361 19.7905L14.4571 19.966C12.8241 20.1474 11.176 20.1474 9.54291 19.966L7.96391 19.7905C5.98831 19.571 4.42875 18.0115 4.20924 16.0359L4.03379 14.4569C3.85234 12.8238 3.85234 11.1757 4.03379 9.54267L4.20924 7.96366C4.42875 5.98806 5.98831 4.4285 7.96391 4.20899L9.54291 4.03355C11.176 3.8521 12.8241 3.8521 14.4571 4.03355L16.0361 4.20899C18.0117 4.4285 19.5713 5.98806 19.7908 7.96367L19.9662 9.54267ZM7.77065 2.4697C4.98157 2.77959 2.77984 4.98132 2.46994 7.77041L2.2945 9.34941C2.09877 11.1109 2.09877 12.8886 2.2945 14.6501L2.46994 16.2291C2.77984 19.0182 4.98157 21.2199 7.77065 21.5298L9.34966 21.7053C11.1111 21.901 12.8889 21.901 14.6504 21.7053L16.2294 21.5298C19.0185 21.2199 21.2202 19.0182 21.5301 16.2291L21.7055 14.6501C21.9012 12.8886 21.9012 11.1109 21.7055 9.34941L21.5301 7.77041C21.2202 4.98133 19.0185 2.77959 16.2294 2.4697L14.6504 2.29425C12.8889 2.09853 11.1111 2.09853 9.34966 2.29425L7.77065 2.4697ZM13.25 8.75C13.25 9.44036 12.6904 10 12 10C11.3096 10 10.75 9.44036 10.75 8.75C10.75 8.05964 11.3096 7.5 12 7.5C12.6904 7.5 13.25 8.05964 13.25 8.75ZM12 11C11.4477 11 11 11.4925 11 12.1V15.4C11 16.0075 11.4477 16.5 12 16.5C12.5523 16.5 13 16.0075 13 15.4V12.1C13 11.4925 12.5523 11 12 11Z\"\n />,\n 'InfoSquareOutlinedLight',\n);\n"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,IAAT,QAAqB,kBAArB;AACA,OAAOC,aAAP,MAA0B,wBAA1B;AAEA,eAAeA,aAAa,eACxB,oBAAC,IAAD;EACI,CAAC,EAAC;AADN,EADwB,EAIxB,yBAJwB,CAA5B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import createSvgIcon from '../utils/createSvgIcon';
|
|
4
|
+
export default createSvgIcon( /*#__PURE__*/React.createElement(Path, {
|
|
5
|
+
d: "M5.25 6.5C4.42157 6.5 3.75 7.17157 3.75 8C3.75 8.82843 4.42157 9.5 5.25 9.5C6.07843 9.5 6.75 8.82843 6.75 8C6.75 7.17157 6.07843 6.5 5.25 6.5ZM9.5 6.75C8.80964 6.75 8.25 7.30964 8.25 8C8.25 8.69036 8.80964 9.25 9.5 9.25H19C19.6904 9.25 20.25 8.69036 20.25 8C20.25 7.30964 19.6904 6.75 19 6.75H9.5ZM5.25 10.5C4.42157 10.5 3.75 11.1716 3.75 12C3.75 12.8284 4.42157 13.5 5.25 13.5C6.07843 13.5 6.75 12.8284 6.75 12C6.75 11.1716 6.07843 10.5 5.25 10.5ZM9.5 10.75C8.80964 10.75 8.25 11.3096 8.25 12C8.25 12.6904 8.80964 13.25 9.5 13.25H16C16.6904 13.25 17.25 12.6904 17.25 12C17.25 11.3096 16.6904 10.75 16 10.75H9.5ZM5.25 14.5C4.42157 14.5 3.75 15.1716 3.75 16C3.75 16.8284 4.42157 17.5 5.25 17.5C6.07843 17.5 6.75 16.8284 6.75 16C6.75 15.1716 6.07843 14.5 5.25 14.5ZM9.5 14.75C8.80964 14.75 8.25 15.3096 8.25 16C8.25 16.6904 8.80964 17.25 9.5 17.25H13C13.6904 17.25 14.25 16.6904 14.25 16C14.25 15.3096 13.6904 14.75 13 14.75H9.5Z"
|
|
6
|
+
}), 'ListFilled');
|
|
7
|
+
//# sourceMappingURL=ListFilled.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","Path","createSvgIcon"],"sources":["ListFilled.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M5.25 6.5C4.42157 6.5 3.75 7.17157 3.75 8C3.75 8.82843 4.42157 9.5 5.25 9.5C6.07843 9.5 6.75 8.82843 6.75 8C6.75 7.17157 6.07843 6.5 5.25 6.5ZM9.5 6.75C8.80964 6.75 8.25 7.30964 8.25 8C8.25 8.69036 8.80964 9.25 9.5 9.25H19C19.6904 9.25 20.25 8.69036 20.25 8C20.25 7.30964 19.6904 6.75 19 6.75H9.5ZM5.25 10.5C4.42157 10.5 3.75 11.1716 3.75 12C3.75 12.8284 4.42157 13.5 5.25 13.5C6.07843 13.5 6.75 12.8284 6.75 12C6.75 11.1716 6.07843 10.5 5.25 10.5ZM9.5 10.75C8.80964 10.75 8.25 11.3096 8.25 12C8.25 12.6904 8.80964 13.25 9.5 13.25H16C16.6904 13.25 17.25 12.6904 17.25 12C17.25 11.3096 16.6904 10.75 16 10.75H9.5ZM5.25 14.5C4.42157 14.5 3.75 15.1716 3.75 16C3.75 16.8284 4.42157 17.5 5.25 17.5C6.07843 17.5 6.75 16.8284 6.75 16C6.75 15.1716 6.07843 14.5 5.25 14.5ZM9.5 14.75C8.80964 14.75 8.25 15.3096 8.25 16C8.25 16.6904 8.80964 17.25 9.5 17.25H13C13.6904 17.25 14.25 16.6904 14.25 16C14.25 15.3096 13.6904 14.75 13 14.75H9.5Z\"\n />,\n 'ListFilled',\n);\n"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,IAAT,QAAqB,kBAArB;AACA,OAAOC,aAAP,MAA0B,wBAA1B;AAEA,eAAeA,aAAa,eACxB,oBAAC,IAAD;EACI,CAAC,EAAC;AADN,EADwB,EAIxB,YAJwB,CAA5B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import createSvgIcon from '../utils/createSvgIcon';
|
|
4
|
+
export default createSvgIcon( /*#__PURE__*/React.createElement(Path, {
|
|
5
|
+
d: "M2.75 7.5C2.75 8.19036 3.30964 8.75 4 8.75C4.69036 8.75 5.25 8.19036 5.25 7.5C5.25 6.80964 4.69036 6.25 4 6.25C3.30964 6.25 2.75 6.80964 2.75 7.5ZM7.5 7.5C7.5 6.94772 7.94772 6.5 8.5 6.5H20C20.5523 6.5 21 6.94772 21 7.5C21 8.05228 20.5523 8.5 20 8.5H8.5C7.94772 8.5 7.5 8.05228 7.5 7.5ZM7.5 12C7.5 11.4477 7.94772 11 8.5 11H17C17.5523 11 18 11.4477 18 12C18 12.5523 17.5523 13 17 13H8.5C7.94772 13 7.5 12.5523 7.5 12ZM8.5 15.5C7.94772 15.5 7.5 15.9477 7.5 16.5C7.5 17.0523 7.94772 17.5 8.5 17.5H14C14.5523 17.5 15 17.0523 15 16.5C15 15.9477 14.5523 15.5 14 15.5H8.5ZM2.75 12C2.75 12.6904 3.30964 13.25 4 13.25C4.69036 13.25 5.25 12.6904 5.25 12C5.25 11.3096 4.69036 10.75 4 10.75C3.30964 10.75 2.75 11.3096 2.75 12ZM2.75 16.5C2.75 17.1904 3.30964 17.75 4 17.75C4.69036 17.75 5.25 17.1904 5.25 16.5C5.25 15.8096 4.69036 15.25 4 15.25C3.30964 15.25 2.75 15.8096 2.75 16.5Z"
|
|
6
|
+
}), 'ListOutlined');
|
|
7
|
+
//# sourceMappingURL=ListOutlined.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","Path","createSvgIcon"],"sources":["ListOutlined.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M2.75 7.5C2.75 8.19036 3.30964 8.75 4 8.75C4.69036 8.75 5.25 8.19036 5.25 7.5C5.25 6.80964 4.69036 6.25 4 6.25C3.30964 6.25 2.75 6.80964 2.75 7.5ZM7.5 7.5C7.5 6.94772 7.94772 6.5 8.5 6.5H20C20.5523 6.5 21 6.94772 21 7.5C21 8.05228 20.5523 8.5 20 8.5H8.5C7.94772 8.5 7.5 8.05228 7.5 7.5ZM7.5 12C7.5 11.4477 7.94772 11 8.5 11H17C17.5523 11 18 11.4477 18 12C18 12.5523 17.5523 13 17 13H8.5C7.94772 13 7.5 12.5523 7.5 12ZM8.5 15.5C7.94772 15.5 7.5 15.9477 7.5 16.5C7.5 17.0523 7.94772 17.5 8.5 17.5H14C14.5523 17.5 15 17.0523 15 16.5C15 15.9477 14.5523 15.5 14 15.5H8.5ZM2.75 12C2.75 12.6904 3.30964 13.25 4 13.25C4.69036 13.25 5.25 12.6904 5.25 12C5.25 11.3096 4.69036 10.75 4 10.75C3.30964 10.75 2.75 11.3096 2.75 12ZM2.75 16.5C2.75 17.1904 3.30964 17.75 4 17.75C4.69036 17.75 5.25 17.1904 5.25 16.5C5.25 15.8096 4.69036 15.25 4 15.25C3.30964 15.25 2.75 15.8096 2.75 16.5Z\"\n />,\n 'ListOutlined',\n);\n"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,IAAT,QAAqB,kBAArB;AACA,OAAOC,aAAP,MAA0B,wBAA1B;AAEA,eAAeA,aAAa,eACxB,oBAAC,IAAD;EACI,CAAC,EAAC;AADN,EADwB,EAIxB,cAJwB,CAA5B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import createSvgIcon from '../utils/createSvgIcon';
|
|
4
|
+
export default createSvgIcon( /*#__PURE__*/React.createElement(Path, {
|
|
5
|
+
d: "M4 6.5C3.44772 6.5 3 6.94772 3 7.5C3 8.05228 3.44772 8.5 4 8.5C4.55228 8.5 5 8.05228 5 7.5C5 6.94772 4.55228 6.5 4 6.5ZM8.5 6.625C8.01675 6.625 7.625 7.01675 7.625 7.5C7.625 7.98325 8.01675 8.375 8.5 8.375H20C20.4832 8.375 20.875 7.98325 20.875 7.5C20.875 7.01675 20.4832 6.625 20 6.625H8.5ZM8.5 11.125C8.01675 11.125 7.625 11.5168 7.625 12C7.625 12.4832 8.01675 12.875 8.5 12.875H17C17.4832 12.875 17.875 12.4832 17.875 12C17.875 11.5168 17.4832 11.125 17 11.125H8.5ZM7.625 16.5C7.625 16.0168 8.01675 15.625 8.5 15.625H14C14.4832 15.625 14.875 16.0168 14.875 16.5C14.875 16.9832 14.4832 17.375 14 17.375H8.5C8.01675 17.375 7.625 16.9832 7.625 16.5ZM3 12C3 11.4477 3.44772 11 4 11C4.55228 11 5 11.4477 5 12C5 12.5523 4.55228 13 4 13C3.44772 13 3 12.5523 3 12ZM4 15.5C3.44772 15.5 3 15.9477 3 16.5C3 17.0523 3.44772 17.5 4 17.5C4.55228 17.5 5 17.0523 5 16.5C5 15.9477 4.55228 15.5 4 15.5Z"
|
|
6
|
+
}), 'ListOutlinedLight');
|
|
7
|
+
//# sourceMappingURL=ListOutlinedLight.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","Path","createSvgIcon"],"sources":["ListOutlinedLight.tsx"],"sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M4 6.5C3.44772 6.5 3 6.94772 3 7.5C3 8.05228 3.44772 8.5 4 8.5C4.55228 8.5 5 8.05228 5 7.5C5 6.94772 4.55228 6.5 4 6.5ZM8.5 6.625C8.01675 6.625 7.625 7.01675 7.625 7.5C7.625 7.98325 8.01675 8.375 8.5 8.375H20C20.4832 8.375 20.875 7.98325 20.875 7.5C20.875 7.01675 20.4832 6.625 20 6.625H8.5ZM8.5 11.125C8.01675 11.125 7.625 11.5168 7.625 12C7.625 12.4832 8.01675 12.875 8.5 12.875H17C17.4832 12.875 17.875 12.4832 17.875 12C17.875 11.5168 17.4832 11.125 17 11.125H8.5ZM7.625 16.5C7.625 16.0168 8.01675 15.625 8.5 15.625H14C14.4832 15.625 14.875 16.0168 14.875 16.5C14.875 16.9832 14.4832 17.375 14 17.375H8.5C8.01675 17.375 7.625 16.9832 7.625 16.5ZM3 12C3 11.4477 3.44772 11 4 11C4.55228 11 5 11.4477 5 12C5 12.5523 4.55228 13 4 13C3.44772 13 3 12.5523 3 12ZM4 15.5C3.44772 15.5 3 15.9477 3 16.5C3 17.0523 3.44772 17.5 4 17.5C4.55228 17.5 5 17.0523 5 16.5C5 15.9477 4.55228 15.5 4 15.5Z\"\n />,\n 'ListOutlinedLight',\n);\n"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,IAAT,QAAqB,kBAArB;AACA,OAAOC,aAAP,MAA0B,wBAA1B;AAEA,eAAeA,aAAa,eACxB,oBAAC,IAAD;EACI,CAAC,EAAC;AADN,EADwB,EAIxB,mBAJwB,CAA5B"}
|
package/build/module/index.js
CHANGED
|
@@ -24,6 +24,9 @@ export { default as ClockFilled } from './icons/ClockFilled';
|
|
|
24
24
|
export { default as ClockOutlined } from './icons/ClockOutlined';
|
|
25
25
|
export { default as ClockTwoTone } from './icons/ClockTwoTone';
|
|
26
26
|
export { default as Close } from './icons/Close';
|
|
27
|
+
export { default as ContentFilled } from './icons/ContentFilled';
|
|
28
|
+
export { default as ContentOutlined } from './icons/ContentOutlined';
|
|
29
|
+
export { default as ContentOutlinedLight } from './icons/ContentOutlinedLight';
|
|
27
30
|
export { default as CopyFilled } from './icons/CopyFilled';
|
|
28
31
|
export { default as Expand } from './icons/Expand';
|
|
29
32
|
export { default as EyeOff } from './icons/EyeOff';
|
|
@@ -41,10 +44,16 @@ export { default as Help } from './icons/Help';
|
|
|
41
44
|
export { default as HomeFilled } from './icons/HomeFilled';
|
|
42
45
|
export { default as HomeOutlined } from './icons/HomeOutlined';
|
|
43
46
|
export { default as Info } from './icons/Info';
|
|
47
|
+
export { default as InfoSquareFilled } from './icons/InfoSquareFilled';
|
|
48
|
+
export { default as InfoSquareOutlined } from './icons/InfoSquareOutlined';
|
|
49
|
+
export { default as InfoSquareOutlinedLight } from './icons/InfoSquareOutlinedLight';
|
|
44
50
|
export { default as Instagram } from './icons/Instagram';
|
|
45
51
|
export { default as LibraryFilled } from './icons/LibraryFilled';
|
|
46
52
|
export { default as LibraryOutlined } from './icons/LibraryOutlined';
|
|
47
53
|
export { default as List } from './icons/List';
|
|
54
|
+
export { default as ListFilled } from './icons/ListFilled';
|
|
55
|
+
export { default as ListOutlined } from './icons/ListOutlined';
|
|
56
|
+
export { default as ListOutlinedLight } from './icons/ListOutlinedLight';
|
|
48
57
|
export { default as Logo } from './icons/Logo';
|
|
49
58
|
export { default as MailFilled } from './icons/MailFilled';
|
|
50
59
|
export { default as MailOutlined } from './icons/MailOutlined';
|