@kanmu/popcorn-icons 1.2.1 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -1
- package/README.md +4 -2
- package/dist/Icon.d.mts +1 -1
- package/dist/Icon.d.ts +1 -1
- package/dist/icons/Cart.d.mts +13 -0
- package/dist/icons/Cart.d.ts +13 -0
- package/dist/icons/Cart.js +61 -0
- package/dist/icons/Cart.mjs +31 -0
- package/dist/icons/ChevronDown.js +1 -1
- package/dist/icons/ChevronDown.mjs +1 -1
- package/dist/icons/ChevronRight.js +1 -1
- package/dist/icons/ChevronRight.mjs +1 -1
- package/dist/icons/ChevronUp.js +1 -1
- package/dist/icons/ChevronUp.mjs +1 -1
- package/dist/icons/CoinPurse.d.mts +13 -0
- package/dist/icons/CoinPurse.d.ts +13 -0
- package/dist/icons/CoinPurse.js +66 -0
- package/dist/icons/CoinPurse.mjs +36 -0
- package/dist/icons/index.d.mts +2 -0
- package/dist/icons/index.d.ts +2 -0
- package/dist/icons/index.js +6 -0
- package/dist/icons/index.mjs +98 -94
- package/package.json +13 -6
package/LICENSE.md
CHANGED
|
@@ -66,4 +66,4 @@ The license for this software library does not grant any intellectual property r
|
|
|
66
66
|
|
|
67
67
|
### Limitation of Liability
|
|
68
68
|
|
|
69
|
-
Kanmu, Inc. is not responsible for any claims arising from improper use of these brand icons by third parties. Users are solely responsible for ensuring their use complies with these terms.
|
|
69
|
+
Kanmu, Inc. is not responsible for any claims arising from improper use of these brand icons by third parties. Users are solely responsible for ensuring their use complies with these terms.
|
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# @kanmu/popcorn-icons
|
|
2
2
|
|
|
3
|
-
Popcorn Design Kit
|
|
3
|
+
Popcorn Design Kit で使用する React Native 製のアイコンライブラリ
|
|
4
|
+
|
|
5
|
+
 
|
|
4
6
|
|
|
5
7
|
## インストール
|
|
6
8
|
|
|
@@ -85,7 +87,7 @@ const CustomizedIcons = () => {
|
|
|
85
87
|
|
|
86
88
|
## Contributing
|
|
87
89
|
|
|
88
|
-
|
|
90
|
+
アイコンパッケージの開発に貢献いただける方は、以下のドキュメントを参照してください。
|
|
89
91
|
|
|
90
92
|
- [コントリビューションガイド](../../CONTRIBUTING.md) - 開発環境のセットアップとワークフロー
|
|
91
93
|
- [リリースガイド](./docs/release-guide.md) - Figma からアイコンを更新してリリースする手順
|
package/dist/Icon.d.mts
CHANGED
|
@@ -9,7 +9,7 @@ interface IconProps extends SvgProps {
|
|
|
9
9
|
size?: IconSize;
|
|
10
10
|
color?: IconColor;
|
|
11
11
|
}
|
|
12
|
-
declare const iconNames: IconName
|
|
12
|
+
declare const iconNames: Array<IconName>;
|
|
13
13
|
declare const Icon: ({ name, size, color, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
14
14
|
|
|
15
15
|
export { Icon, type IconColor, type IconName, type IconProps, type IconSize, Icon as default, iconNames };
|
package/dist/Icon.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ interface IconProps extends SvgProps {
|
|
|
9
9
|
size?: IconSize;
|
|
10
10
|
color?: IconColor;
|
|
11
11
|
}
|
|
12
|
-
declare const iconNames: IconName
|
|
12
|
+
declare const iconNames: Array<IconName>;
|
|
13
13
|
declare const Icon: ({ name, size, color, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
14
14
|
|
|
15
15
|
export { Icon, type IconColor, type IconName, type IconProps, type IconSize, Icon as default, iconNames };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface ISvgProps extends SvgProps {
|
|
5
|
+
xmlns?: string;
|
|
6
|
+
xmlnsXlink?: string;
|
|
7
|
+
xmlSpace?: string;
|
|
8
|
+
size?: number;
|
|
9
|
+
color?: string;
|
|
10
|
+
}
|
|
11
|
+
declare const SvgCart: ({ size, width, height, color, ...restProps }: ISvgProps) => react_jsx_runtime.JSX.Element;
|
|
12
|
+
|
|
13
|
+
export { SvgCart as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface ISvgProps extends SvgProps {
|
|
5
|
+
xmlns?: string;
|
|
6
|
+
xmlnsXlink?: string;
|
|
7
|
+
xmlSpace?: string;
|
|
8
|
+
size?: number;
|
|
9
|
+
color?: string;
|
|
10
|
+
}
|
|
11
|
+
declare const SvgCart: ({ size, width, height, color, ...restProps }: ISvgProps) => react_jsx_runtime.JSX.Element;
|
|
12
|
+
|
|
13
|
+
export { SvgCart as default };
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var Cart_exports = {};
|
|
30
|
+
__export(Cart_exports, {
|
|
31
|
+
default: () => Cart_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(Cart_exports);
|
|
34
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
35
|
+
var import_react_native_svg = __toESM(require("react-native-svg"));
|
|
36
|
+
const SvgCart = ({ size = 24, width = size, height = size, color, ...restProps }) => {
|
|
37
|
+
const props = {
|
|
38
|
+
...restProps,
|
|
39
|
+
width,
|
|
40
|
+
height
|
|
41
|
+
};
|
|
42
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_react_native_svg.default, { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
43
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
44
|
+
import_react_native_svg.Path,
|
|
45
|
+
{
|
|
46
|
+
fill: color,
|
|
47
|
+
d: "M21.9 4.916c.354 0 .698.15.929.441.23.292.3.667.225 1.02l-1.558 7.266c-.138.648-.74 1.14-1.39 1.14H6.428V13.28h13.633l1.47-6.859H4.665V4.916z"
|
|
48
|
+
}
|
|
49
|
+
),
|
|
50
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react_native_svg.Path, { fill: color, d: "M21.467 9.098v1.504H5.647V9.098z" }),
|
|
51
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
52
|
+
import_react_native_svg.Path,
|
|
53
|
+
{
|
|
54
|
+
fill: color,
|
|
55
|
+
d: "M.984 1.825a.733.733 0 0 1 .978-.372l2.103.975c.27.126.495.334.657.54.161.205.312.473.373.77l2.511 12.193H20.31c.408 0 .739.337.739.753 0 .415-.331.752-.74.752H7.557c-.612 0-1.177-.437-1.355-1.027l-.03-.12L3.647 4.047q0-.004-.017-.042a.6.6 0 0 0-.142-.181q-.034-.026-.037-.027L1.35 2.822a.76.76 0 0 1-.366-.997M11.108 20.42a.685.685 0 0 0-.678-.69.685.685 0 0 0-.679.69c0 .382.304.69.679.69a.684.684 0 0 0 .678-.69m1.477 0c0 1.213-.965 2.195-2.155 2.195s-2.156-.981-2.156-2.194c0-1.212.965-2.195 2.156-2.195 1.19 0 2.155.983 2.155 2.195M17.764 20.42a.685.685 0 0 0-.678-.69.685.685 0 0 0-.679.69c0 .382.304.69.679.69a.684.684 0 0 0 .678-.69m1.477 0c0 1.213-.965 2.195-2.155 2.195s-2.156-.981-2.156-2.194c0-1.212.965-2.195 2.156-2.195 1.19 0 2.156.983 2.156 2.195"
|
|
56
|
+
}
|
|
57
|
+
),
|
|
58
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react_native_svg.Path, { fill: color, d: "M17.42 5.698v8.261h-1.477V5.7zM11.573 5.698v8.261h-1.477V5.7z" })
|
|
59
|
+
] });
|
|
60
|
+
};
|
|
61
|
+
var Cart_default = SvgCart;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgCart = ({ size = 24, width = size, height = size, color, ...restProps }) => {
|
|
4
|
+
const props = {
|
|
5
|
+
...restProps,
|
|
6
|
+
width,
|
|
7
|
+
height
|
|
8
|
+
};
|
|
9
|
+
return /* @__PURE__ */ jsxs(Svg, { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
10
|
+
/* @__PURE__ */ jsx(
|
|
11
|
+
Path,
|
|
12
|
+
{
|
|
13
|
+
fill: color,
|
|
14
|
+
d: "M21.9 4.916c.354 0 .698.15.929.441.23.292.3.667.225 1.02l-1.558 7.266c-.138.648-.74 1.14-1.39 1.14H6.428V13.28h13.633l1.47-6.859H4.665V4.916z"
|
|
15
|
+
}
|
|
16
|
+
),
|
|
17
|
+
/* @__PURE__ */ jsx(Path, { fill: color, d: "M21.467 9.098v1.504H5.647V9.098z" }),
|
|
18
|
+
/* @__PURE__ */ jsx(
|
|
19
|
+
Path,
|
|
20
|
+
{
|
|
21
|
+
fill: color,
|
|
22
|
+
d: "M.984 1.825a.733.733 0 0 1 .978-.372l2.103.975c.27.126.495.334.657.54.161.205.312.473.373.77l2.511 12.193H20.31c.408 0 .739.337.739.753 0 .415-.331.752-.74.752H7.557c-.612 0-1.177-.437-1.355-1.027l-.03-.12L3.647 4.047q0-.004-.017-.042a.6.6 0 0 0-.142-.181q-.034-.026-.037-.027L1.35 2.822a.76.76 0 0 1-.366-.997M11.108 20.42a.685.685 0 0 0-.678-.69.685.685 0 0 0-.679.69c0 .382.304.69.679.69a.684.684 0 0 0 .678-.69m1.477 0c0 1.213-.965 2.195-2.155 2.195s-2.156-.981-2.156-2.194c0-1.212.965-2.195 2.156-2.195 1.19 0 2.155.983 2.155 2.195M17.764 20.42a.685.685 0 0 0-.678-.69.685.685 0 0 0-.679.69c0 .382.304.69.679.69a.684.684 0 0 0 .678-.69m1.477 0c0 1.213-.965 2.195-2.155 2.195s-2.156-.981-2.156-2.194c0-1.212.965-2.195 2.156-2.195 1.19 0 2.156.983 2.156 2.195"
|
|
23
|
+
}
|
|
24
|
+
),
|
|
25
|
+
/* @__PURE__ */ jsx(Path, { fill: color, d: "M17.42 5.698v8.261h-1.477V5.7zM11.573 5.698v8.261h-1.477V5.7z" })
|
|
26
|
+
] });
|
|
27
|
+
};
|
|
28
|
+
var Cart_default = SvgCart;
|
|
29
|
+
export {
|
|
30
|
+
Cart_default as default
|
|
31
|
+
};
|
|
@@ -49,7 +49,7 @@ const SvgChevronDown = ({
|
|
|
49
49
|
import_react_native_svg.Path,
|
|
50
50
|
{
|
|
51
51
|
fill: color,
|
|
52
|
-
d: "
|
|
52
|
+
d: "M19.24 7.25a1.074 1.074 0 1 1 1.52 1.52l-7.964 7.965c-.44.44-1.152.44-1.591 0L3.24 8.77a1.074 1.074 0 1 1 1.52-1.52L12 14.49z"
|
|
53
53
|
}
|
|
54
54
|
) });
|
|
55
55
|
};
|
|
@@ -16,7 +16,7 @@ const SvgChevronDown = ({
|
|
|
16
16
|
Path,
|
|
17
17
|
{
|
|
18
18
|
fill: color,
|
|
19
|
-
d: "
|
|
19
|
+
d: "M19.24 7.25a1.074 1.074 0 1 1 1.52 1.52l-7.964 7.965c-.44.44-1.152.44-1.591 0L3.24 8.77a1.074 1.074 0 1 1 1.52-1.52L12 14.49z"
|
|
20
20
|
}
|
|
21
21
|
) });
|
|
22
22
|
};
|
|
@@ -49,7 +49,7 @@ const SvgChevronRight = ({
|
|
|
49
49
|
import_react_native_svg.Path,
|
|
50
50
|
{
|
|
51
51
|
fill: color,
|
|
52
|
-
d: "M7.25
|
|
52
|
+
d: "M7.25 19.24a1.074 1.074 0 1 0 1.52 1.52l7.965-7.964c.44-.44.44-1.151 0-1.59L8.77 3.24a1.074 1.074 0 1 0-1.52 1.52L14.49 12z"
|
|
53
53
|
}
|
|
54
54
|
) });
|
|
55
55
|
};
|
|
@@ -16,7 +16,7 @@ const SvgChevronRight = ({
|
|
|
16
16
|
Path,
|
|
17
17
|
{
|
|
18
18
|
fill: color,
|
|
19
|
-
d: "M7.25
|
|
19
|
+
d: "M7.25 19.24a1.074 1.074 0 1 0 1.52 1.52l7.965-7.964c.44-.44.44-1.151 0-1.59L8.77 3.24a1.074 1.074 0 1 0-1.52 1.52L14.49 12z"
|
|
20
20
|
}
|
|
21
21
|
) });
|
|
22
22
|
};
|
package/dist/icons/ChevronUp.js
CHANGED
|
@@ -43,7 +43,7 @@ const SvgChevronUp = ({ size = 24, width = size, height = size, color, ...restPr
|
|
|
43
43
|
import_react_native_svg.Path,
|
|
44
44
|
{
|
|
45
45
|
fill: color,
|
|
46
|
-
d: "M19.24 16.75a1.074 1.074 0 1 0 1.52-1.52l-7.964-7.
|
|
46
|
+
d: "M19.24 16.75a1.074 1.074 0 1 0 1.52-1.52l-7.964-7.965a1.125 1.125 0 0 0-1.591 0L3.24 15.23a1.074 1.074 0 1 0 1.52 1.52L12 9.51z"
|
|
47
47
|
}
|
|
48
48
|
) });
|
|
49
49
|
};
|
package/dist/icons/ChevronUp.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const SvgChevronUp = ({ size = 24, width = size, height = size, color, ...restPr
|
|
|
10
10
|
Path,
|
|
11
11
|
{
|
|
12
12
|
fill: color,
|
|
13
|
-
d: "M19.24 16.75a1.074 1.074 0 1 0 1.52-1.52l-7.964-7.
|
|
13
|
+
d: "M19.24 16.75a1.074 1.074 0 1 0 1.52-1.52l-7.964-7.965a1.125 1.125 0 0 0-1.591 0L3.24 15.23a1.074 1.074 0 1 0 1.52 1.52L12 9.51z"
|
|
14
14
|
}
|
|
15
15
|
) });
|
|
16
16
|
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface ISvgProps extends SvgProps {
|
|
5
|
+
xmlns?: string;
|
|
6
|
+
xmlnsXlink?: string;
|
|
7
|
+
xmlSpace?: string;
|
|
8
|
+
size?: number;
|
|
9
|
+
color?: string;
|
|
10
|
+
}
|
|
11
|
+
declare const SvgCoinPurse: ({ size, width, height, color, ...restProps }: ISvgProps) => react_jsx_runtime.JSX.Element;
|
|
12
|
+
|
|
13
|
+
export { SvgCoinPurse as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface ISvgProps extends SvgProps {
|
|
5
|
+
xmlns?: string;
|
|
6
|
+
xmlnsXlink?: string;
|
|
7
|
+
xmlSpace?: string;
|
|
8
|
+
size?: number;
|
|
9
|
+
color?: string;
|
|
10
|
+
}
|
|
11
|
+
declare const SvgCoinPurse: ({ size, width, height, color, ...restProps }: ISvgProps) => react_jsx_runtime.JSX.Element;
|
|
12
|
+
|
|
13
|
+
export { SvgCoinPurse as default };
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var CoinPurse_exports = {};
|
|
30
|
+
__export(CoinPurse_exports, {
|
|
31
|
+
default: () => CoinPurse_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(CoinPurse_exports);
|
|
34
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
35
|
+
var import_react_native_svg = __toESM(require("react-native-svg"));
|
|
36
|
+
const SvgCoinPurse = ({ size = 24, width = size, height = size, color, ...restProps }) => {
|
|
37
|
+
const props = {
|
|
38
|
+
...restProps,
|
|
39
|
+
width,
|
|
40
|
+
height
|
|
41
|
+
};
|
|
42
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_react_native_svg.default, { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
43
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
44
|
+
import_react_native_svg.Path,
|
|
45
|
+
{
|
|
46
|
+
fill: color,
|
|
47
|
+
d: "M19.955 12.147A5.163 5.163 0 0 0 14.8 6.991H9.201a5.163 5.163 0 0 0-5.156 5.156.737.737 0 0 0 1.473 0A3.686 3.686 0 0 1 9.2 8.464h5.598a3.686 3.686 0 0 1 3.683 3.683.737.737 0 0 0 1.473 0m1.474 0a2.21 2.21 0 0 1-4.42 0c0-1.218-.992-2.21-2.21-2.21H9.201c-1.218 0-2.21.992-2.21 2.21a2.21 2.21 0 0 1-4.42 0 6.636 6.636 0 0 1 6.63-6.63h5.598a6.636 6.636 0 0 1 6.63 6.63"
|
|
48
|
+
}
|
|
49
|
+
),
|
|
50
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
51
|
+
import_react_native_svg.Path,
|
|
52
|
+
{
|
|
53
|
+
fill: color,
|
|
54
|
+
d: "M11.263 4.781a.737.737 0 1 0-1.473 0 .737.737 0 0 0 1.473 0m1.474 0a2.21 2.21 0 1 1-4.42 0 2.21 2.21 0 0 1 4.42 0"
|
|
55
|
+
}
|
|
56
|
+
),
|
|
57
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
58
|
+
import_react_native_svg.Path,
|
|
59
|
+
{
|
|
60
|
+
fill: color,
|
|
61
|
+
d: "M14.21 4.781a.737.737 0 1 0-1.473 0 .737.737 0 0 0 1.473 0m1.473 0a2.21 2.21 0 1 1-4.42 0 2.21 2.21 0 0 1 4.42 0M2.571 16.883c0-1.578.646-2.74 1.69-3.783a.737.737 0 1 1 1.041 1.041c-.843.844-1.257 1.651-1.257 2.742a3.073 3.073 0 0 0 3.072 3.072h9.766a3.073 3.073 0 0 0 3.072-3.072v-.408c0-.853-.25-1.455-.803-2.207l-.055-.073-.099-.133-.01-.015a.737.737 0 0 1 1.19-.868l.098.132c.715.954 1.153 1.87 1.153 3.164v.408a4.546 4.546 0 0 1-4.546 4.546H7.117a4.546 4.546 0 0 1-4.546-4.546"
|
|
62
|
+
}
|
|
63
|
+
)
|
|
64
|
+
] });
|
|
65
|
+
};
|
|
66
|
+
var CoinPurse_default = SvgCoinPurse;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgCoinPurse = ({ size = 24, width = size, height = size, color, ...restProps }) => {
|
|
4
|
+
const props = {
|
|
5
|
+
...restProps,
|
|
6
|
+
width,
|
|
7
|
+
height
|
|
8
|
+
};
|
|
9
|
+
return /* @__PURE__ */ jsxs(Svg, { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
10
|
+
/* @__PURE__ */ jsx(
|
|
11
|
+
Path,
|
|
12
|
+
{
|
|
13
|
+
fill: color,
|
|
14
|
+
d: "M19.955 12.147A5.163 5.163 0 0 0 14.8 6.991H9.201a5.163 5.163 0 0 0-5.156 5.156.737.737 0 0 0 1.473 0A3.686 3.686 0 0 1 9.2 8.464h5.598a3.686 3.686 0 0 1 3.683 3.683.737.737 0 0 0 1.473 0m1.474 0a2.21 2.21 0 0 1-4.42 0c0-1.218-.992-2.21-2.21-2.21H9.201c-1.218 0-2.21.992-2.21 2.21a2.21 2.21 0 0 1-4.42 0 6.636 6.636 0 0 1 6.63-6.63h5.598a6.636 6.636 0 0 1 6.63 6.63"
|
|
15
|
+
}
|
|
16
|
+
),
|
|
17
|
+
/* @__PURE__ */ jsx(
|
|
18
|
+
Path,
|
|
19
|
+
{
|
|
20
|
+
fill: color,
|
|
21
|
+
d: "M11.263 4.781a.737.737 0 1 0-1.473 0 .737.737 0 0 0 1.473 0m1.474 0a2.21 2.21 0 1 1-4.42 0 2.21 2.21 0 0 1 4.42 0"
|
|
22
|
+
}
|
|
23
|
+
),
|
|
24
|
+
/* @__PURE__ */ jsx(
|
|
25
|
+
Path,
|
|
26
|
+
{
|
|
27
|
+
fill: color,
|
|
28
|
+
d: "M14.21 4.781a.737.737 0 1 0-1.473 0 .737.737 0 0 0 1.473 0m1.473 0a2.21 2.21 0 1 1-4.42 0 2.21 2.21 0 0 1 4.42 0M2.571 16.883c0-1.578.646-2.74 1.69-3.783a.737.737 0 1 1 1.041 1.041c-.843.844-1.257 1.651-1.257 2.742a3.073 3.073 0 0 0 3.072 3.072h9.766a3.073 3.073 0 0 0 3.072-3.072v-.408c0-.853-.25-1.455-.803-2.207l-.055-.073-.099-.133-.01-.015a.737.737 0 0 1 1.19-.868l.098.132c.715.954 1.153 1.87 1.153 3.164v.408a4.546 4.546 0 0 1-4.546 4.546H7.117a4.546 4.546 0 0 1-4.546-4.546"
|
|
29
|
+
}
|
|
30
|
+
)
|
|
31
|
+
] });
|
|
32
|
+
};
|
|
33
|
+
var CoinPurse_default = SvgCoinPurse;
|
|
34
|
+
export {
|
|
35
|
+
CoinPurse_default as default
|
|
36
|
+
};
|
package/dist/icons/index.d.mts
CHANGED
|
@@ -2,6 +2,7 @@ export { default as Bars } from './Bars.mjs';
|
|
|
2
2
|
export { default as BellFill } from './BellFill.mjs';
|
|
3
3
|
export { default as Bell } from './Bell.mjs';
|
|
4
4
|
export { default as Calendar } from './Calendar.mjs';
|
|
5
|
+
export { default as Cart } from './Cart.mjs';
|
|
5
6
|
export { default as CheckCircleFill } from './CheckCircleFill.mjs';
|
|
6
7
|
export { default as Check } from './Check.mjs';
|
|
7
8
|
export { default as ChevronDown } from './ChevronDown.mjs';
|
|
@@ -9,6 +10,7 @@ export { default as ChevronLeft } from './ChevronLeft.mjs';
|
|
|
9
10
|
export { default as ChevronRight } from './ChevronRight.mjs';
|
|
10
11
|
export { default as ChevronUp } from './ChevronUp.mjs';
|
|
11
12
|
export { default as ClockRotateLeft } from './ClockRotateLeft.mjs';
|
|
13
|
+
export { default as CoinPurse } from './CoinPurse.mjs';
|
|
12
14
|
export { default as CreditCardFill } from './CreditCardFill.mjs';
|
|
13
15
|
export { default as CreditCardSwipe } from './CreditCardSwipe.mjs';
|
|
14
16
|
export { default as CreditCard } from './CreditCard.mjs';
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export { default as Bars } from './Bars.js';
|
|
|
2
2
|
export { default as BellFill } from './BellFill.js';
|
|
3
3
|
export { default as Bell } from './Bell.js';
|
|
4
4
|
export { default as Calendar } from './Calendar.js';
|
|
5
|
+
export { default as Cart } from './Cart.js';
|
|
5
6
|
export { default as CheckCircleFill } from './CheckCircleFill.js';
|
|
6
7
|
export { default as Check } from './Check.js';
|
|
7
8
|
export { default as ChevronDown } from './ChevronDown.js';
|
|
@@ -9,6 +10,7 @@ export { default as ChevronLeft } from './ChevronLeft.js';
|
|
|
9
10
|
export { default as ChevronRight } from './ChevronRight.js';
|
|
10
11
|
export { default as ChevronUp } from './ChevronUp.js';
|
|
11
12
|
export { default as ClockRotateLeft } from './ClockRotateLeft.js';
|
|
13
|
+
export { default as CoinPurse } from './CoinPurse.js';
|
|
12
14
|
export { default as CreditCardFill } from './CreditCardFill.js';
|
|
13
15
|
export { default as CreditCardSwipe } from './CreditCardSwipe.js';
|
|
14
16
|
export { default as CreditCard } from './CreditCard.js';
|
package/dist/icons/index.js
CHANGED
|
@@ -32,6 +32,7 @@ __export(icons_exports, {
|
|
|
32
32
|
Bell: () => import_Bell.default,
|
|
33
33
|
BellFill: () => import_BellFill.default,
|
|
34
34
|
Calendar: () => import_Calendar.default,
|
|
35
|
+
Cart: () => import_Cart.default,
|
|
35
36
|
Check: () => import_Check.default,
|
|
36
37
|
CheckCircleFill: () => import_CheckCircleFill.default,
|
|
37
38
|
ChevronDown: () => import_ChevronDown.default,
|
|
@@ -39,6 +40,7 @@ __export(icons_exports, {
|
|
|
39
40
|
ChevronRight: () => import_ChevronRight.default,
|
|
40
41
|
ChevronUp: () => import_ChevronUp.default,
|
|
41
42
|
ClockRotateLeft: () => import_ClockRotateLeft.default,
|
|
43
|
+
CoinPurse: () => import_CoinPurse.default,
|
|
42
44
|
CreditCard: () => import_CreditCard.default,
|
|
43
45
|
CreditCardFill: () => import_CreditCardFill.default,
|
|
44
46
|
CreditCardSwipe: () => import_CreditCardSwipe.default,
|
|
@@ -85,6 +87,7 @@ var import_Bars = __toESM(require("./Bars"));
|
|
|
85
87
|
var import_BellFill = __toESM(require("./BellFill"));
|
|
86
88
|
var import_Bell = __toESM(require("./Bell"));
|
|
87
89
|
var import_Calendar = __toESM(require("./Calendar"));
|
|
90
|
+
var import_Cart = __toESM(require("./Cart"));
|
|
88
91
|
var import_CheckCircleFill = __toESM(require("./CheckCircleFill"));
|
|
89
92
|
var import_Check = __toESM(require("./Check"));
|
|
90
93
|
var import_ChevronDown = __toESM(require("./ChevronDown"));
|
|
@@ -92,6 +95,7 @@ var import_ChevronLeft = __toESM(require("./ChevronLeft"));
|
|
|
92
95
|
var import_ChevronRight = __toESM(require("./ChevronRight"));
|
|
93
96
|
var import_ChevronUp = __toESM(require("./ChevronUp"));
|
|
94
97
|
var import_ClockRotateLeft = __toESM(require("./ClockRotateLeft"));
|
|
98
|
+
var import_CoinPurse = __toESM(require("./CoinPurse"));
|
|
95
99
|
var import_CreditCardFill = __toESM(require("./CreditCardFill"));
|
|
96
100
|
var import_CreditCardSwipe = __toESM(require("./CreditCardSwipe"));
|
|
97
101
|
var import_CreditCard = __toESM(require("./CreditCard"));
|
|
@@ -138,6 +142,7 @@ var import_YenSign = __toESM(require("./YenSign"));
|
|
|
138
142
|
Bell,
|
|
139
143
|
BellFill,
|
|
140
144
|
Calendar,
|
|
145
|
+
Cart,
|
|
141
146
|
Check,
|
|
142
147
|
CheckCircleFill,
|
|
143
148
|
ChevronDown,
|
|
@@ -145,6 +150,7 @@ var import_YenSign = __toESM(require("./YenSign"));
|
|
|
145
150
|
ChevronRight,
|
|
146
151
|
ChevronUp,
|
|
147
152
|
ClockRotateLeft,
|
|
153
|
+
CoinPurse,
|
|
148
154
|
CreditCard,
|
|
149
155
|
CreditCardFill,
|
|
150
156
|
CreditCardSwipe,
|
package/dist/icons/index.mjs
CHANGED
|
@@ -2,103 +2,107 @@ import { default as default2 } from "./Bars.mjs";
|
|
|
2
2
|
import { default as default3 } from "./BellFill.mjs";
|
|
3
3
|
import { default as default4 } from "./Bell.mjs";
|
|
4
4
|
import { default as default5 } from "./Calendar.mjs";
|
|
5
|
-
import { default as default6 } from "./
|
|
6
|
-
import { default as default7 } from "./
|
|
7
|
-
import { default as default8 } from "./
|
|
8
|
-
import { default as default9 } from "./
|
|
9
|
-
import { default as default10 } from "./
|
|
10
|
-
import { default as default11 } from "./
|
|
11
|
-
import { default as default12 } from "./
|
|
12
|
-
import { default as default13 } from "./
|
|
13
|
-
import { default as default14 } from "./
|
|
14
|
-
import { default as default15 } from "./
|
|
15
|
-
import { default as default16 } from "./
|
|
16
|
-
import { default as default17 } from "./
|
|
17
|
-
import { default as default18 } from "./
|
|
18
|
-
import { default as default19 } from "./
|
|
19
|
-
import { default as default20 } from "./
|
|
20
|
-
import { default as default21 } from "./
|
|
21
|
-
import { default as default22 } from "./
|
|
22
|
-
import { default as default23 } from "./
|
|
23
|
-
import { default as default24 } from "./
|
|
24
|
-
import { default as default25 } from "./
|
|
25
|
-
import { default as default26 } from "./
|
|
26
|
-
import { default as default27 } from "./
|
|
27
|
-
import { default as default28 } from "./
|
|
28
|
-
import { default as default29 } from "./
|
|
29
|
-
import { default as default30 } from "./
|
|
30
|
-
import { default as default31 } from "./
|
|
31
|
-
import { default as default32 } from "./
|
|
32
|
-
import { default as default33 } from "./
|
|
33
|
-
import { default as default34 } from "./
|
|
34
|
-
import { default as default35 } from "./
|
|
35
|
-
import { default as default36 } from "./
|
|
36
|
-
import { default as default37 } from "./
|
|
37
|
-
import { default as default38 } from "./
|
|
38
|
-
import { default as default39 } from "./
|
|
39
|
-
import { default as default40 } from "./
|
|
40
|
-
import { default as default41 } from "./
|
|
41
|
-
import { default as default42 } from "./
|
|
42
|
-
import { default as default43 } from "./
|
|
43
|
-
import { default as default44 } from "./
|
|
44
|
-
import { default as default45 } from "./
|
|
45
|
-
import { default as default46 } from "./
|
|
46
|
-
import { default as default47 } from "./
|
|
47
|
-
import { default as default48 } from "./
|
|
48
|
-
import { default as default49 } from "./
|
|
49
|
-
import { default as default50 } from "./
|
|
50
|
-
import { default as default51 } from "./
|
|
51
|
-
import { default as default52 } from "./
|
|
5
|
+
import { default as default6 } from "./Cart.mjs";
|
|
6
|
+
import { default as default7 } from "./CheckCircleFill.mjs";
|
|
7
|
+
import { default as default8 } from "./Check.mjs";
|
|
8
|
+
import { default as default9 } from "./ChevronDown.mjs";
|
|
9
|
+
import { default as default10 } from "./ChevronLeft.mjs";
|
|
10
|
+
import { default as default11 } from "./ChevronRight.mjs";
|
|
11
|
+
import { default as default12 } from "./ChevronUp.mjs";
|
|
12
|
+
import { default as default13 } from "./ClockRotateLeft.mjs";
|
|
13
|
+
import { default as default14 } from "./CoinPurse.mjs";
|
|
14
|
+
import { default as default15 } from "./CreditCardFill.mjs";
|
|
15
|
+
import { default as default16 } from "./CreditCardSwipe.mjs";
|
|
16
|
+
import { default as default17 } from "./CreditCard.mjs";
|
|
17
|
+
import { default as default18 } from "./ExclamationCircleFill.mjs";
|
|
18
|
+
import { default as default19 } from "./ExclamationCircle.mjs";
|
|
19
|
+
import { default as default20 } from "./ExclamationTriangle.mjs";
|
|
20
|
+
import { default as default21 } from "./EyeFill.mjs";
|
|
21
|
+
import { default as default22 } from "./EyeSlashFill.mjs";
|
|
22
|
+
import { default as default23 } from "./File.mjs";
|
|
23
|
+
import { default as default24 } from "./Gauge.mjs";
|
|
24
|
+
import { default as default25 } from "./GearFill.mjs";
|
|
25
|
+
import { default as default26 } from "./Gear.mjs";
|
|
26
|
+
import { default as default27 } from "./GiftFill.mjs";
|
|
27
|
+
import { default as default28 } from "./Gift.mjs";
|
|
28
|
+
import { default as default29 } from "./Globe.mjs";
|
|
29
|
+
import { default as default30 } from "./HandPointUp.mjs";
|
|
30
|
+
import { default as default31 } from "./HouseFill.mjs";
|
|
31
|
+
import { default as default32 } from "./House.mjs";
|
|
32
|
+
import { default as default33 } from "./Lock.mjs";
|
|
33
|
+
import { default as default34 } from "./MagnifyingGlass.mjs";
|
|
34
|
+
import { default as default35 } from "./MinusCircleFill.mjs";
|
|
35
|
+
import { default as default36 } from "./MinusCircle.mjs";
|
|
36
|
+
import { default as default37 } from "./Mobile.mjs";
|
|
37
|
+
import { default as default38 } from "./MonthlyLimit.mjs";
|
|
38
|
+
import { default as default39 } from "./PhoneFill.mjs";
|
|
39
|
+
import { default as default40 } from "./PlusCircleFill.mjs";
|
|
40
|
+
import { default as default41 } from "./PlusCircle.mjs";
|
|
41
|
+
import { default as default42 } from "./Plus.mjs";
|
|
42
|
+
import { default as default43 } from "./Pochitto.mjs";
|
|
43
|
+
import { default as default44 } from "./QuestionCircle.mjs";
|
|
44
|
+
import { default as default45 } from "./Question.mjs";
|
|
45
|
+
import { default as default46 } from "./RotateRight.mjs";
|
|
46
|
+
import { default as default47 } from "./Shop.mjs";
|
|
47
|
+
import { default as default48 } from "./SquareDot.mjs";
|
|
48
|
+
import { default as default49 } from "./Unlock.mjs";
|
|
49
|
+
import { default as default50 } from "./Vandlykun.mjs";
|
|
50
|
+
import { default as default51 } from "./XmarkCircleFill.mjs";
|
|
51
|
+
import { default as default52 } from "./XmarkCircle.mjs";
|
|
52
|
+
import { default as default53 } from "./Xmark.mjs";
|
|
53
|
+
import { default as default54 } from "./YenSign.mjs";
|
|
52
54
|
export {
|
|
53
55
|
default2 as Bars,
|
|
54
56
|
default4 as Bell,
|
|
55
57
|
default3 as BellFill,
|
|
56
58
|
default5 as Calendar,
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
default9 as
|
|
61
|
-
default10 as
|
|
62
|
-
default11 as
|
|
63
|
-
default12 as
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
default16 as
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
default20 as
|
|
72
|
-
default21 as
|
|
73
|
-
default22 as
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
default26 as
|
|
77
|
-
default25 as
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
default37 as
|
|
89
|
-
|
|
90
|
-
default39 as
|
|
91
|
-
|
|
92
|
-
default41 as
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
default46 as
|
|
98
|
-
default47 as
|
|
99
|
-
default48 as
|
|
100
|
-
|
|
101
|
-
default50 as
|
|
102
|
-
|
|
103
|
-
default52 as
|
|
59
|
+
default6 as Cart,
|
|
60
|
+
default8 as Check,
|
|
61
|
+
default7 as CheckCircleFill,
|
|
62
|
+
default9 as ChevronDown,
|
|
63
|
+
default10 as ChevronLeft,
|
|
64
|
+
default11 as ChevronRight,
|
|
65
|
+
default12 as ChevronUp,
|
|
66
|
+
default13 as ClockRotateLeft,
|
|
67
|
+
default14 as CoinPurse,
|
|
68
|
+
default17 as CreditCard,
|
|
69
|
+
default15 as CreditCardFill,
|
|
70
|
+
default16 as CreditCardSwipe,
|
|
71
|
+
default19 as ExclamationCircle,
|
|
72
|
+
default18 as ExclamationCircleFill,
|
|
73
|
+
default20 as ExclamationTriangle,
|
|
74
|
+
default21 as EyeFill,
|
|
75
|
+
default22 as EyeSlashFill,
|
|
76
|
+
default23 as File,
|
|
77
|
+
default24 as Gauge,
|
|
78
|
+
default26 as Gear,
|
|
79
|
+
default25 as GearFill,
|
|
80
|
+
default28 as Gift,
|
|
81
|
+
default27 as GiftFill,
|
|
82
|
+
default29 as Globe,
|
|
83
|
+
default30 as HandPointUp,
|
|
84
|
+
default32 as House,
|
|
85
|
+
default31 as HouseFill,
|
|
86
|
+
default33 as Lock,
|
|
87
|
+
default34 as MagnifyingGlass,
|
|
88
|
+
default36 as MinusCircle,
|
|
89
|
+
default35 as MinusCircleFill,
|
|
90
|
+
default37 as Mobile,
|
|
91
|
+
default38 as MonthlyLimit,
|
|
92
|
+
default39 as PhoneFill,
|
|
93
|
+
default42 as Plus,
|
|
94
|
+
default41 as PlusCircle,
|
|
95
|
+
default40 as PlusCircleFill,
|
|
96
|
+
default43 as Pochitto,
|
|
97
|
+
default45 as Question,
|
|
98
|
+
default44 as QuestionCircle,
|
|
99
|
+
default46 as RotateRight,
|
|
100
|
+
default47 as Shop,
|
|
101
|
+
default48 as SquareDot,
|
|
102
|
+
default49 as Unlock,
|
|
103
|
+
default50 as Vandlykun,
|
|
104
|
+
default53 as Xmark,
|
|
105
|
+
default52 as XmarkCircle,
|
|
106
|
+
default51 as XmarkCircleFill,
|
|
107
|
+
default54 as YenSign
|
|
104
108
|
};
|
package/package.json
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kanmu/popcorn-icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Popcorn Icons for React Native.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Kanmu Design Team",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/kanmu/popcorn.git",
|
|
10
|
+
"directory": "packages/popcorn-icons"
|
|
11
|
+
},
|
|
7
12
|
"files": [
|
|
8
13
|
"dist"
|
|
9
14
|
],
|
|
@@ -11,18 +16,20 @@
|
|
|
11
16
|
"figma": "rimraf assets/icons && FIGMA_FILE_KEY=$FIGMA_FILE_KEY_ICONS node ./scripts/fetchFigmaIcons.js",
|
|
12
17
|
"svgr": "rimraf src/icons && svgr -d src assets",
|
|
13
18
|
"build": "tsup",
|
|
14
|
-
"clean": "rimraf dist"
|
|
19
|
+
"clean": "rimraf dist",
|
|
20
|
+
"typecheck": "tsc --noEmit",
|
|
21
|
+
"lint": "npx --no oxlint ."
|
|
15
22
|
},
|
|
16
23
|
"dependencies": {
|
|
17
|
-
"@kanmu/popcorn-tokens": "
|
|
24
|
+
"@kanmu/popcorn-tokens": "workspace:^"
|
|
18
25
|
},
|
|
19
26
|
"devDependencies": {
|
|
20
27
|
"@svgr/cli": "8.1.0",
|
|
21
|
-
"@types/react": "19.2.
|
|
28
|
+
"@types/react": "19.2.14",
|
|
22
29
|
"react": "19.2.0",
|
|
23
30
|
"react-native-svg": "15.13.0",
|
|
24
|
-
"rimraf": "6.
|
|
25
|
-
"tsup": "8.5.
|
|
31
|
+
"rimraf": "6.1.3",
|
|
32
|
+
"tsup": "8.5.1"
|
|
26
33
|
},
|
|
27
34
|
"peerDependencies": {
|
|
28
35
|
"@types/react": "^18 || ^19",
|