@fountain-ui/icons 1.15.2 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/build/commonjs/icons/Add.js +21 -0
- package/build/commonjs/icons/Add.js.map +1 -0
- package/build/commonjs/icons/Check.js +21 -0
- package/build/commonjs/icons/Check.js.map +1 -0
- package/build/commonjs/index.js +16 -0
- package/build/commonjs/index.js.map +1 -1
- package/build/module/icons/Add.js +7 -0
- package/build/module/icons/Add.js.map +1 -0
- package/build/module/icons/Check.js +7 -0
- package/build/module/icons/Check.js.map +1 -0
- package/build/module/index.js +2 -0
- package/build/module/index.js.map +1 -1
- package/build/typescript/icons/Add.d.ts +113 -0
- package/build/typescript/icons/Check.d.ts +113 -0
- package/build/typescript/index.d.ts +2 -0
- package/package.json +3 -3
- package/src/icons/Add.tsx +9 -0
- package/src/icons/Check.tsx +9 -0
- package/src/index.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.16.0](https://github.com/tappytoon/tappytoon/compare/@fountain-ui/icons@1.12.0...@fountain-ui/icons@1.16.0) (2022-01-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @fountain-ui/icons
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.15.2](https://github.com/tappytoon/tappytoon/compare/@fountain-ui/icons@1.12.0...@fountain-ui/icons@1.15.2) (2022-01-13)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @fountain-ui/icons
|
|
@@ -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: "M9.25 10.75V17H10.75V10.75H17V9.25H10.75V3H9.25V9.25H3V10.75H9.25Z"
|
|
18
|
+
}), 'Add');
|
|
19
|
+
|
|
20
|
+
exports.default = _default;
|
|
21
|
+
//# sourceMappingURL=Add.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["Add.tsx"],"names":[],"mappings":";;;;;;;AAAA;;AACA;;AACA;;;;eAEe,0CACX,6BAAC,oBAAD;AACI,EAAA,CAAC,EAAC;AADN,EADW,EAIT,KAJS,C","sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M9.25 10.75V17H10.75V10.75H17V9.25H10.75V3H9.25V9.25H3V10.75H9.25Z\"\n />\n , 'Add');\n"]}
|
|
@@ -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: "M17.1304 6.53033L7.10003 16.5607L2.0697 11.5303L3.13036 10.4697L7.10003 14.4393L16.0697 5.46967L17.1304 6.53033Z"
|
|
18
|
+
}), 'Check');
|
|
19
|
+
|
|
20
|
+
exports.default = _default;
|
|
21
|
+
//# sourceMappingURL=Check.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["Check.tsx"],"names":[],"mappings":";;;;;;;AAAA;;AACA;;AACA;;;;eAEe,0CACX,6BAAC,oBAAD;AACI,EAAA,CAAC,EAAC;AADN,EADW,EAIT,OAJS,C","sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M17.1304 6.53033L7.10003 16.5607L2.0697 11.5303L3.13036 10.4697L7.10003 14.4393L16.0697 5.46967L17.1304 6.53033Z\"\n />\n , 'Check');\n"]}
|
package/build/commonjs/index.js
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
+
Object.defineProperty(exports, "Add", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _Add.default;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
6
12
|
Object.defineProperty(exports, "Apple", {
|
|
7
13
|
enumerable: true,
|
|
8
14
|
get: function () {
|
|
@@ -99,6 +105,12 @@ Object.defineProperty(exports, "CalendarOutlined", {
|
|
|
99
105
|
return _CalendarOutlined.default;
|
|
100
106
|
}
|
|
101
107
|
});
|
|
108
|
+
Object.defineProperty(exports, "Check", {
|
|
109
|
+
enumerable: true,
|
|
110
|
+
get: function () {
|
|
111
|
+
return _Check.default;
|
|
112
|
+
}
|
|
113
|
+
});
|
|
102
114
|
Object.defineProperty(exports, "CheckboxTransparentFilled", {
|
|
103
115
|
enumerable: true,
|
|
104
116
|
get: function () {
|
|
@@ -454,6 +466,8 @@ Object.defineProperty(exports, "Youtube", {
|
|
|
454
466
|
}
|
|
455
467
|
});
|
|
456
468
|
|
|
469
|
+
var _Add = _interopRequireDefault(require("./icons/Add"));
|
|
470
|
+
|
|
457
471
|
var _Apple = _interopRequireDefault(require("./icons/Apple"));
|
|
458
472
|
|
|
459
473
|
var _ArrowLeft = _interopRequireDefault(require("./icons/ArrowLeft"));
|
|
@@ -486,6 +500,8 @@ var _CalendarFilled = _interopRequireDefault(require("./icons/CalendarFilled"));
|
|
|
486
500
|
|
|
487
501
|
var _CalendarOutlined = _interopRequireDefault(require("./icons/CalendarOutlined"));
|
|
488
502
|
|
|
503
|
+
var _Check = _interopRequireDefault(require("./icons/Check"));
|
|
504
|
+
|
|
489
505
|
var _CheckboxTransparentFilled = _interopRequireDefault(require("./icons/CheckboxTransparentFilled"));
|
|
490
506
|
|
|
491
507
|
var _CheckboxChecked = _interopRequireDefault(require("./icons/CheckboxChecked"));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["index.ts"],"names":[],"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","sourcesContent":["export { 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 BellTwotone } from './icons/BellTwotone';\nexport { default as BookmarkOutlined } from './icons/BookmarkOutlined';\nexport { default as BookmarkTwotone } from './icons/BookmarkTwotone';\nexport { default as Bullet } from './icons/Bullet';\nexport { default as CalendarFilled } from './icons/CalendarFilled';\nexport { default as CalendarOutlined } from './icons/CalendarOutlined';\nexport { default as Check } from './icons/Check';\nexport { default as CheckboxTransparentFilled } from './icons/CheckboxTransparentFilled';\nexport { default as CheckboxChecked } from './icons/CheckboxChecked';\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 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 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 GenreFilled } from './icons/GenreFilled';\nexport { default as GenreOutlined } from './icons/GenreOutlined';\nexport { default as Google } from './icons/Google';\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 LockOutlined } from './icons/LockOutlined';\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 Outlined } from './icons/Outlined';\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 TokenTwotone } from './icons/TokenTwotone';\nexport { default as Twitter } from './icons/Twitter';\nexport { default as Warning } from './icons/Warning';\nexport { default as Youtube } from './icons/Youtube';"]}
|
|
@@ -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: "M9.25 10.75V17H10.75V10.75H17V9.25H10.75V3H9.25V9.25H3V10.75H9.25Z"
|
|
6
|
+
}), 'Add');
|
|
7
|
+
//# sourceMappingURL=Add.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["Add.tsx"],"names":["React","Path","createSvgIcon"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,IAAT,QAAqB,kBAArB;AACA,OAAOC,aAAP,MAA0B,wBAA1B;AAEA,eAAeA,aAAa,eACxB,oBAAC,IAAD;AACI,EAAA,CAAC,EAAC;AADN,EADwB,EAItB,KAJsB,CAA5B","sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M9.25 10.75V17H10.75V10.75H17V9.25H10.75V3H9.25V9.25H3V10.75H9.25Z\"\n />\n , 'Add');\n"]}
|
|
@@ -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: "M17.1304 6.53033L7.10003 16.5607L2.0697 11.5303L3.13036 10.4697L7.10003 14.4393L16.0697 5.46967L17.1304 6.53033Z"
|
|
6
|
+
}), 'Check');
|
|
7
|
+
//# sourceMappingURL=Check.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["Check.tsx"],"names":["React","Path","createSvgIcon"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,IAAT,QAAqB,kBAArB;AACA,OAAOC,aAAP,MAA0B,wBAA1B;AAEA,eAAeA,aAAa,eACxB,oBAAC,IAAD;AACI,EAAA,CAAC,EAAC;AADN,EADwB,EAItB,OAJsB,CAA5B","sourcesContent":["import React from 'react';\nimport { Path } from 'react-native-svg';\nimport createSvgIcon from '../utils/createSvgIcon';\n\nexport default createSvgIcon(\n <Path\n d=\"M17.1304 6.53033L7.10003 16.5607L2.0697 11.5303L3.13036 10.4697L7.10003 14.4393L16.0697 5.46967L17.1304 6.53033Z\"\n />\n , 'Check');\n"]}
|
package/build/module/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as Add } from './icons/Add';
|
|
1
2
|
export { default as Apple } from './icons/Apple';
|
|
2
3
|
export { default as ArrowLeft } from './icons/ArrowLeft';
|
|
3
4
|
export { default as ArrowLightHorizontalFilled } from './icons/ArrowLightHorizontalFilled';
|
|
@@ -14,6 +15,7 @@ export { default as BookmarkTwotone } from './icons/BookmarkTwotone';
|
|
|
14
15
|
export { default as Bullet } from './icons/Bullet';
|
|
15
16
|
export { default as CalendarFilled } from './icons/CalendarFilled';
|
|
16
17
|
export { default as CalendarOutlined } from './icons/CalendarOutlined';
|
|
18
|
+
export { default as Check } from './icons/Check';
|
|
17
19
|
export { default as CheckboxTransparentFilled } from './icons/CheckboxTransparentFilled';
|
|
18
20
|
export { default as CheckboxChecked } from './icons/CheckboxChecked';
|
|
19
21
|
export { default as CheckCircleOutlined } from './icons/CheckCircleOutlined';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"names":["default","Apple","ArrowLeft","ArrowLightHorizontalFilled","ArrowLightHorizontalOutlined","ArrowLightVerticalFilled","ArrowLightVerticalOutlined","ArrowRight","BellOff","BellOn","BellOutlined","BellTwotone","BookmarkOutlined","BookmarkTwotone","Bullet","CalendarFilled","CalendarOutlined","CheckboxTransparentFilled","CheckboxChecked","CheckCircleOutlined","ChevronDown","ChevronRight","ChevronUp","ChevronLeft","ClockOutlined","ClockTwotone","Close","CopyFilled","EyeOff","EyeOutlined","Facebook","FontLato","FontLiterata","GenreFilled","GenreOutlined","Google","Help","HomeFilled","HomeOutlined","Info","Instagram","LibraryFilled","LibraryOutlined","List","LockOutlined","Logo","MailFilled","MailOutlined","MenuFilled","MenuOutlined","Outlined","Pencil","Point","Radio","RadioChecked","Restart","SaleOutlined","SaleTwotone","Search","Share","SpacingLargeFilled","SpacingLargeOutlined","SpacingMediumFilled","SpacingMediumOutlined","SpacingSmallFilled","SpacingSmallOutlined","Speaker","SwapHorizontal","SwapVertical","TicketOutlined","TicketTwotone","TokenFilled","TokenTwotone","Twitter","Warning","Youtube"],"mappings":"AAAA,SAASA,OAAO,IAAIC,KAApB,QAAiC,eAAjC;AACA,
|
|
1
|
+
{"version":3,"sources":["index.ts"],"names":["default","Add","Apple","ArrowLeft","ArrowLightHorizontalFilled","ArrowLightHorizontalOutlined","ArrowLightVerticalFilled","ArrowLightVerticalOutlined","ArrowRight","BellOff","BellOn","BellOutlined","BellTwotone","BookmarkOutlined","BookmarkTwotone","Bullet","CalendarFilled","CalendarOutlined","Check","CheckboxTransparentFilled","CheckboxChecked","CheckCircleOutlined","ChevronDown","ChevronRight","ChevronUp","ChevronLeft","ClockOutlined","ClockTwotone","Close","CopyFilled","EyeOff","EyeOutlined","Facebook","FontLato","FontLiterata","GenreFilled","GenreOutlined","Google","Help","HomeFilled","HomeOutlined","Info","Instagram","LibraryFilled","LibraryOutlined","List","LockOutlined","Logo","MailFilled","MailOutlined","MenuFilled","MenuOutlined","Outlined","Pencil","Point","Radio","RadioChecked","Restart","SaleOutlined","SaleTwotone","Search","Share","SpacingLargeFilled","SpacingLargeOutlined","SpacingMediumFilled","SpacingMediumOutlined","SpacingSmallFilled","SpacingSmallOutlined","Speaker","SwapHorizontal","SwapVertical","TicketOutlined","TicketTwotone","TokenFilled","TokenTwotone","Twitter","Warning","Youtube"],"mappings":"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","sourcesContent":["export { 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 BellTwotone } from './icons/BellTwotone';\nexport { default as BookmarkOutlined } from './icons/BookmarkOutlined';\nexport { default as BookmarkTwotone } from './icons/BookmarkTwotone';\nexport { default as Bullet } from './icons/Bullet';\nexport { default as CalendarFilled } from './icons/CalendarFilled';\nexport { default as CalendarOutlined } from './icons/CalendarOutlined';\nexport { default as Check } from './icons/Check';\nexport { default as CheckboxTransparentFilled } from './icons/CheckboxTransparentFilled';\nexport { default as CheckboxChecked } from './icons/CheckboxChecked';\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 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 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 GenreFilled } from './icons/GenreFilled';\nexport { default as GenreOutlined } from './icons/GenreOutlined';\nexport { default as Google } from './icons/Google';\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 LockOutlined } from './icons/LockOutlined';\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 Outlined } from './icons/Outlined';\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 TokenTwotone } from './icons/TokenTwotone';\nexport { default as Twitter } from './icons/Twitter';\nexport { default as Warning } from './icons/Warning';\nexport { default as Youtube } from './icons/Youtube';"]}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const _default: React.MemoExoticComponent<{
|
|
3
|
+
(props: {
|
|
4
|
+
opacity?: import("react-native-svg").NumberProp | undefined;
|
|
5
|
+
readonly fill?: import("react-native-svg").Color | undefined;
|
|
6
|
+
fillOpacity?: import("react-native-svg").NumberProp | undefined;
|
|
7
|
+
fillRule?: import("react-native-svg").FillRule | undefined;
|
|
8
|
+
stroke?: import("react-native-svg").Color | undefined;
|
|
9
|
+
strokeWidth?: import("react-native-svg").NumberProp | undefined;
|
|
10
|
+
strokeOpacity?: import("react-native-svg").NumberProp | undefined;
|
|
11
|
+
strokeDasharray?: import("react-native-svg").NumberProp | readonly import("react-native-svg").NumberProp[] | undefined;
|
|
12
|
+
strokeDashoffset?: import("react-native-svg").NumberProp | undefined;
|
|
13
|
+
strokeLinecap?: import("react-native-svg").Linecap | undefined;
|
|
14
|
+
strokeLinejoin?: import("react-native-svg").Linejoin | undefined;
|
|
15
|
+
strokeMiterlimit?: import("react-native-svg").NumberProp | undefined;
|
|
16
|
+
clipRule?: import("react-native-svg").FillRule | undefined;
|
|
17
|
+
clipPath?: string | undefined;
|
|
18
|
+
transform?: string | import("react-native-svg").TransformObject | import("react-native-svg").ColumnMajorTransformMatrix | undefined;
|
|
19
|
+
translate?: import("react-native-svg").NumberArray | undefined;
|
|
20
|
+
translateX?: import("react-native-svg").NumberProp | undefined;
|
|
21
|
+
translateY?: import("react-native-svg").NumberProp | undefined;
|
|
22
|
+
origin?: import("react-native-svg").NumberArray | undefined;
|
|
23
|
+
originX?: import("react-native-svg").NumberProp | undefined;
|
|
24
|
+
originY?: import("react-native-svg").NumberProp | undefined;
|
|
25
|
+
scale?: import("react-native-svg").NumberArray | undefined;
|
|
26
|
+
scaleX?: import("react-native-svg").NumberProp | undefined;
|
|
27
|
+
scaleY?: import("react-native-svg").NumberProp | undefined;
|
|
28
|
+
skew?: import("react-native-svg").NumberArray | undefined;
|
|
29
|
+
skewX?: import("react-native-svg").NumberProp | undefined;
|
|
30
|
+
skewY?: import("react-native-svg").NumberProp | undefined;
|
|
31
|
+
rotation?: import("react-native-svg").NumberProp | undefined;
|
|
32
|
+
x?: import("react-native-svg").NumberArray | undefined;
|
|
33
|
+
y?: import("react-native-svg").NumberArray | undefined;
|
|
34
|
+
vectorEffect?: "none" | "non-scaling-stroke" | "nonScalingStroke" | "default" | "inherit" | "uri" | undefined;
|
|
35
|
+
pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
|
|
36
|
+
onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
37
|
+
onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
38
|
+
onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
39
|
+
onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
40
|
+
onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
41
|
+
onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
42
|
+
onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
43
|
+
onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
44
|
+
onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
45
|
+
onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
46
|
+
onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
47
|
+
onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
48
|
+
disabled?: boolean | undefined;
|
|
49
|
+
onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
50
|
+
onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
51
|
+
onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
52
|
+
onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
53
|
+
delayPressIn?: number | undefined;
|
|
54
|
+
delayPressOut?: number | undefined;
|
|
55
|
+
delayLongPress?: number | undefined;
|
|
56
|
+
id?: string | undefined;
|
|
57
|
+
marker?: string | undefined;
|
|
58
|
+
markerStart?: string | undefined;
|
|
59
|
+
markerMid?: string | undefined;
|
|
60
|
+
markerEnd?: string | undefined;
|
|
61
|
+
mask?: string | undefined;
|
|
62
|
+
readonly style?: import("@emotion/native").ReactNativeStyle | import("@emotion/native").ReactNativeStyle[] | undefined;
|
|
63
|
+
title?: string | undefined;
|
|
64
|
+
readonly height?: import("react-native-svg").NumberProp | undefined;
|
|
65
|
+
readonly width?: import("react-native-svg").NumberProp | undefined;
|
|
66
|
+
readonly viewBox?: string | undefined;
|
|
67
|
+
preserveAspectRatio?: string | undefined;
|
|
68
|
+
readonly color?: import("react-native-svg").Color | undefined;
|
|
69
|
+
hitSlop?: import("react-native").Insets | undefined;
|
|
70
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
|
|
71
|
+
removeClippedSubviews?: boolean | undefined;
|
|
72
|
+
testID?: string | undefined;
|
|
73
|
+
nativeID?: string | undefined;
|
|
74
|
+
collapsable?: boolean | undefined;
|
|
75
|
+
needsOffscreenAlphaCompositing?: boolean | undefined;
|
|
76
|
+
renderToHardwareTextureAndroid?: boolean | undefined;
|
|
77
|
+
focusable?: boolean | undefined;
|
|
78
|
+
shouldRasterizeIOS?: boolean | undefined;
|
|
79
|
+
isTVSelectable?: boolean | undefined;
|
|
80
|
+
hasTVPreferredFocus?: boolean | undefined;
|
|
81
|
+
tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
|
|
82
|
+
tvParallaxShiftDistanceX?: number | undefined;
|
|
83
|
+
tvParallaxShiftDistanceY?: number | undefined;
|
|
84
|
+
tvParallaxTiltAngle?: number | undefined;
|
|
85
|
+
tvParallaxMagnification?: number | undefined;
|
|
86
|
+
onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
87
|
+
onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
88
|
+
onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
89
|
+
onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
90
|
+
onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
91
|
+
accessible?: boolean | undefined;
|
|
92
|
+
accessibilityActions?: readonly Readonly<{
|
|
93
|
+
name: string;
|
|
94
|
+
label?: string | undefined;
|
|
95
|
+
}>[] | undefined;
|
|
96
|
+
accessibilityLabel?: string | undefined;
|
|
97
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
98
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
99
|
+
accessibilityHint?: string | undefined;
|
|
100
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
101
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
|
|
102
|
+
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
|
|
103
|
+
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
|
|
104
|
+
accessibilityElementsHidden?: boolean | undefined;
|
|
105
|
+
accessibilityViewIsModal?: boolean | undefined;
|
|
106
|
+
onAccessibilityEscape?: (() => void) | undefined;
|
|
107
|
+
onAccessibilityTap?: (() => void) | undefined;
|
|
108
|
+
onMagicTap?: (() => void) | undefined;
|
|
109
|
+
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
110
|
+
}): JSX.Element;
|
|
111
|
+
displayName: string;
|
|
112
|
+
}>;
|
|
113
|
+
export default _default;
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const _default: React.MemoExoticComponent<{
|
|
3
|
+
(props: {
|
|
4
|
+
opacity?: import("react-native-svg").NumberProp | undefined;
|
|
5
|
+
readonly fill?: import("react-native-svg").Color | undefined;
|
|
6
|
+
fillOpacity?: import("react-native-svg").NumberProp | undefined;
|
|
7
|
+
fillRule?: import("react-native-svg").FillRule | undefined;
|
|
8
|
+
stroke?: import("react-native-svg").Color | undefined;
|
|
9
|
+
strokeWidth?: import("react-native-svg").NumberProp | undefined;
|
|
10
|
+
strokeOpacity?: import("react-native-svg").NumberProp | undefined;
|
|
11
|
+
strokeDasharray?: import("react-native-svg").NumberProp | readonly import("react-native-svg").NumberProp[] | undefined;
|
|
12
|
+
strokeDashoffset?: import("react-native-svg").NumberProp | undefined;
|
|
13
|
+
strokeLinecap?: import("react-native-svg").Linecap | undefined;
|
|
14
|
+
strokeLinejoin?: import("react-native-svg").Linejoin | undefined;
|
|
15
|
+
strokeMiterlimit?: import("react-native-svg").NumberProp | undefined;
|
|
16
|
+
clipRule?: import("react-native-svg").FillRule | undefined;
|
|
17
|
+
clipPath?: string | undefined;
|
|
18
|
+
transform?: string | import("react-native-svg").TransformObject | import("react-native-svg").ColumnMajorTransformMatrix | undefined;
|
|
19
|
+
translate?: import("react-native-svg").NumberArray | undefined;
|
|
20
|
+
translateX?: import("react-native-svg").NumberProp | undefined;
|
|
21
|
+
translateY?: import("react-native-svg").NumberProp | undefined;
|
|
22
|
+
origin?: import("react-native-svg").NumberArray | undefined;
|
|
23
|
+
originX?: import("react-native-svg").NumberProp | undefined;
|
|
24
|
+
originY?: import("react-native-svg").NumberProp | undefined;
|
|
25
|
+
scale?: import("react-native-svg").NumberArray | undefined;
|
|
26
|
+
scaleX?: import("react-native-svg").NumberProp | undefined;
|
|
27
|
+
scaleY?: import("react-native-svg").NumberProp | undefined;
|
|
28
|
+
skew?: import("react-native-svg").NumberArray | undefined;
|
|
29
|
+
skewX?: import("react-native-svg").NumberProp | undefined;
|
|
30
|
+
skewY?: import("react-native-svg").NumberProp | undefined;
|
|
31
|
+
rotation?: import("react-native-svg").NumberProp | undefined;
|
|
32
|
+
x?: import("react-native-svg").NumberArray | undefined;
|
|
33
|
+
y?: import("react-native-svg").NumberArray | undefined;
|
|
34
|
+
vectorEffect?: "none" | "non-scaling-stroke" | "nonScalingStroke" | "default" | "inherit" | "uri" | undefined;
|
|
35
|
+
pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
|
|
36
|
+
onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
37
|
+
onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
38
|
+
onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
39
|
+
onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
40
|
+
onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
41
|
+
onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
42
|
+
onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
43
|
+
onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
44
|
+
onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
45
|
+
onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
46
|
+
onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
47
|
+
onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
48
|
+
disabled?: boolean | undefined;
|
|
49
|
+
onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
50
|
+
onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
51
|
+
onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
52
|
+
onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
53
|
+
delayPressIn?: number | undefined;
|
|
54
|
+
delayPressOut?: number | undefined;
|
|
55
|
+
delayLongPress?: number | undefined;
|
|
56
|
+
id?: string | undefined;
|
|
57
|
+
marker?: string | undefined;
|
|
58
|
+
markerStart?: string | undefined;
|
|
59
|
+
markerMid?: string | undefined;
|
|
60
|
+
markerEnd?: string | undefined;
|
|
61
|
+
mask?: string | undefined;
|
|
62
|
+
readonly style?: import("@emotion/native").ReactNativeStyle | import("@emotion/native").ReactNativeStyle[] | undefined;
|
|
63
|
+
title?: string | undefined;
|
|
64
|
+
readonly height?: import("react-native-svg").NumberProp | undefined;
|
|
65
|
+
readonly width?: import("react-native-svg").NumberProp | undefined;
|
|
66
|
+
readonly viewBox?: string | undefined;
|
|
67
|
+
preserveAspectRatio?: string | undefined;
|
|
68
|
+
readonly color?: import("react-native-svg").Color | undefined;
|
|
69
|
+
hitSlop?: import("react-native").Insets | undefined;
|
|
70
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
|
|
71
|
+
removeClippedSubviews?: boolean | undefined;
|
|
72
|
+
testID?: string | undefined;
|
|
73
|
+
nativeID?: string | undefined;
|
|
74
|
+
collapsable?: boolean | undefined;
|
|
75
|
+
needsOffscreenAlphaCompositing?: boolean | undefined;
|
|
76
|
+
renderToHardwareTextureAndroid?: boolean | undefined;
|
|
77
|
+
focusable?: boolean | undefined;
|
|
78
|
+
shouldRasterizeIOS?: boolean | undefined;
|
|
79
|
+
isTVSelectable?: boolean | undefined;
|
|
80
|
+
hasTVPreferredFocus?: boolean | undefined;
|
|
81
|
+
tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
|
|
82
|
+
tvParallaxShiftDistanceX?: number | undefined;
|
|
83
|
+
tvParallaxShiftDistanceY?: number | undefined;
|
|
84
|
+
tvParallaxTiltAngle?: number | undefined;
|
|
85
|
+
tvParallaxMagnification?: number | undefined;
|
|
86
|
+
onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
87
|
+
onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
88
|
+
onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
89
|
+
onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
90
|
+
onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
91
|
+
accessible?: boolean | undefined;
|
|
92
|
+
accessibilityActions?: readonly Readonly<{
|
|
93
|
+
name: string;
|
|
94
|
+
label?: string | undefined;
|
|
95
|
+
}>[] | undefined;
|
|
96
|
+
accessibilityLabel?: string | undefined;
|
|
97
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
98
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
99
|
+
accessibilityHint?: string | undefined;
|
|
100
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
101
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
|
|
102
|
+
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
|
|
103
|
+
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
|
|
104
|
+
accessibilityElementsHidden?: boolean | undefined;
|
|
105
|
+
accessibilityViewIsModal?: boolean | undefined;
|
|
106
|
+
onAccessibilityEscape?: (() => void) | undefined;
|
|
107
|
+
onAccessibilityTap?: (() => void) | undefined;
|
|
108
|
+
onMagicTap?: (() => void) | undefined;
|
|
109
|
+
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
110
|
+
}): JSX.Element;
|
|
111
|
+
displayName: string;
|
|
112
|
+
}>;
|
|
113
|
+
export default _default;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as Add } from './icons/Add';
|
|
1
2
|
export { default as Apple } from './icons/Apple';
|
|
2
3
|
export { default as ArrowLeft } from './icons/ArrowLeft';
|
|
3
4
|
export { default as ArrowLightHorizontalFilled } from './icons/ArrowLightHorizontalFilled';
|
|
@@ -14,6 +15,7 @@ export { default as BookmarkTwotone } from './icons/BookmarkTwotone';
|
|
|
14
15
|
export { default as Bullet } from './icons/Bullet';
|
|
15
16
|
export { default as CalendarFilled } from './icons/CalendarFilled';
|
|
16
17
|
export { default as CalendarOutlined } from './icons/CalendarOutlined';
|
|
18
|
+
export { default as Check } from './icons/Check';
|
|
17
19
|
export { default as CheckboxTransparentFilled } from './icons/CheckboxTransparentFilled';
|
|
18
20
|
export { default as CheckboxChecked } from './icons/CheckboxChecked';
|
|
19
21
|
export { default as CheckCircleOutlined } from './icons/CheckCircleOutlined';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fountain-ui/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Fountain-UI Team",
|
|
6
6
|
"description": "Fountain Design Svg Icons converted to Fountain-UI React components.",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@fountain-ui/core": "^1.
|
|
32
|
+
"@fountain-ui/core": "^1.15.0"
|
|
33
33
|
},
|
|
34
34
|
"react-native-builder-bob": {
|
|
35
35
|
"source": "./src",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "e4a73c0ba0c0a618713494e095b658410e720766"
|
|
57
57
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import createSvgIcon from '../utils/createSvgIcon';
|
|
4
|
+
|
|
5
|
+
export default createSvgIcon(
|
|
6
|
+
<Path
|
|
7
|
+
d="M17.1304 6.53033L7.10003 16.5607L2.0697 11.5303L3.13036 10.4697L7.10003 14.4393L16.0697 5.46967L17.1304 6.53033Z"
|
|
8
|
+
/>
|
|
9
|
+
, 'Check');
|
package/src/index.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as Add } from './icons/Add';
|
|
1
2
|
export { default as Apple } from './icons/Apple';
|
|
2
3
|
export { default as ArrowLeft } from './icons/ArrowLeft';
|
|
3
4
|
export { default as ArrowLightHorizontalFilled } from './icons/ArrowLightHorizontalFilled';
|
|
@@ -14,6 +15,7 @@ export { default as BookmarkTwotone } from './icons/BookmarkTwotone';
|
|
|
14
15
|
export { default as Bullet } from './icons/Bullet';
|
|
15
16
|
export { default as CalendarFilled } from './icons/CalendarFilled';
|
|
16
17
|
export { default as CalendarOutlined } from './icons/CalendarOutlined';
|
|
18
|
+
export { default as Check } from './icons/Check';
|
|
17
19
|
export { default as CheckboxTransparentFilled } from './icons/CheckboxTransparentFilled';
|
|
18
20
|
export { default as CheckboxChecked } from './icons/CheckboxChecked';
|
|
19
21
|
export { default as CheckCircleOutlined } from './icons/CheckCircleOutlined';
|