@kanmu/popcorn-icons 0.1.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/README.md +89 -0
- package/dist/Attention.d.mts +11 -0
- package/dist/Attention.d.ts +11 -0
- package/dist/Attention.js +54 -0
- package/dist/Attention.mjs +24 -0
- package/dist/AttentionActive.d.mts +11 -0
- package/dist/AttentionActive.d.ts +11 -0
- package/dist/AttentionActive.js +54 -0
- package/dist/AttentionActive.mjs +24 -0
- package/dist/Back.d.mts +11 -0
- package/dist/Back.d.ts +11 -0
- package/dist/Back.js +55 -0
- package/dist/Back.mjs +25 -0
- package/dist/Pochitto.d.mts +11 -0
- package/dist/Pochitto.d.ts +11 -0
- package/dist/Pochitto.js +65 -0
- package/dist/Pochitto.mjs +35 -0
- package/dist/index.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +47 -0
- package/dist/index.mjs +10 -0
- package/package.json +50 -0
package/README.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# @kanmu/popcorn-icons
|
|
2
|
+
|
|
3
|
+
カンムの React Native で開発されたプロダクトで使用するアイコンライブラリ
|
|
4
|
+
|
|
5
|
+
## インストール
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
yarn add @kanmu/popcorn-icons
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
### Peer Dependencies
|
|
12
|
+
|
|
13
|
+
このパッケージには以下の peer dependencies が必要です。
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
yarn add react-native-svg
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
※ React 18 以上、React Native SVG 15 以上が必要です。
|
|
20
|
+
|
|
21
|
+
## 使い方
|
|
22
|
+
|
|
23
|
+
### 基本的な使用例
|
|
24
|
+
|
|
25
|
+
```tsx
|
|
26
|
+
import {Home, Search, Setting} from '@kanmu/popcorn-icons';
|
|
27
|
+
import {View} from 'react-native';
|
|
28
|
+
|
|
29
|
+
const MyComponent = () => {
|
|
30
|
+
return (
|
|
31
|
+
<View>
|
|
32
|
+
<Home width={24} height={24} color="#272A32" />
|
|
33
|
+
<Search width={32} height={32} color="#A6AAB7" />
|
|
34
|
+
<Setting width={48} height={48} color="#FFFFFF" />
|
|
35
|
+
</View>
|
|
36
|
+
);
|
|
37
|
+
};
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### カスタマイズ例
|
|
41
|
+
|
|
42
|
+
```tsx
|
|
43
|
+
import {Arrow, Card, Search} from '@kanmu/popcorn-icons';
|
|
44
|
+
import {View, Pressable, StyleSheet} from 'react-native';
|
|
45
|
+
|
|
46
|
+
const CustomizedIcons = () => {
|
|
47
|
+
return (
|
|
48
|
+
<View style={styles.container}>
|
|
49
|
+
<Arrow
|
|
50
|
+
width={30}
|
|
51
|
+
height={30}
|
|
52
|
+
color="#A6AAB7"
|
|
53
|
+
opacity={0.7}
|
|
54
|
+
style={{transform: [{rotate: '45deg'}]}}
|
|
55
|
+
/>
|
|
56
|
+
|
|
57
|
+
<Pressable
|
|
58
|
+
accessibilityRole="button"
|
|
59
|
+
accessibilityLabel="検索を開始"
|
|
60
|
+
accessibilityHint="検索画面を開きます"
|
|
61
|
+
style={styles.iconButton}
|
|
62
|
+
>
|
|
63
|
+
<Search width={28} height={28} color="#272A32" />
|
|
64
|
+
</Pressable>
|
|
65
|
+
</View>
|
|
66
|
+
);
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
const styles = StyleSheet.create({
|
|
70
|
+
container: {
|
|
71
|
+
flexDirection: 'row',
|
|
72
|
+
gap: 16,
|
|
73
|
+
},
|
|
74
|
+
iconButton: {
|
|
75
|
+
width: 48,
|
|
76
|
+
height: 48,
|
|
77
|
+
alignItems: 'center',
|
|
78
|
+
justifyContent: 'center',
|
|
79
|
+
},
|
|
80
|
+
});
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
## ライセンス
|
|
84
|
+
|
|
85
|
+
XXX
|
|
86
|
+
|
|
87
|
+
## 作成者
|
|
88
|
+
|
|
89
|
+
Kanmu Design Team
|
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
}
|
|
9
|
+
declare const SvgAttention: (props: ISvgProps) => react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
export { SvgAttention as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
}
|
|
9
|
+
declare const SvgAttention: (props: ISvgProps) => react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
export { SvgAttention as default };
|
|
@@ -0,0 +1,54 @@
|
|
|
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 Attention_exports = {};
|
|
30
|
+
__export(Attention_exports, {
|
|
31
|
+
default: () => Attention_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(Attention_exports);
|
|
34
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
35
|
+
var import_react_native_svg = __toESM(require("react-native-svg"));
|
|
36
|
+
const SvgAttention = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
37
|
+
import_react_native_svg.default,
|
|
38
|
+
{
|
|
39
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
40
|
+
width: 24,
|
|
41
|
+
height: 24,
|
|
42
|
+
fill: "none",
|
|
43
|
+
viewBox: "0 0 56 56",
|
|
44
|
+
...props,
|
|
45
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
46
|
+
import_react_native_svg.Path,
|
|
47
|
+
{
|
|
48
|
+
fill: "#000",
|
|
49
|
+
d: "M28 6c12.15 0 22 9.847 22 22 0 12.15-9.847 22-22 22-12.15 0-22-9.847-22-22C6 15.85 15.847 6 28 6m0 4c-9.943 0-18 8.058-18 18s8.058 18 18 18 18-8.058 18-18-8.058-18-18-18m-1.768 27.732a2.5 2.5 0 1 1 3.536 3.535 2.5 2.5 0 0 1-3.536-3.535M28 15.5a2 2 0 0 1 2 2v15a2 2 0 1 1-4 0v-15a2 2 0 0 1 2-2"
|
|
50
|
+
}
|
|
51
|
+
)
|
|
52
|
+
}
|
|
53
|
+
);
|
|
54
|
+
var Attention_default = SvgAttention;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgAttention = (props) => /* @__PURE__ */ jsx(
|
|
4
|
+
Svg,
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: 24,
|
|
8
|
+
height: 24,
|
|
9
|
+
fill: "none",
|
|
10
|
+
viewBox: "0 0 56 56",
|
|
11
|
+
...props,
|
|
12
|
+
children: /* @__PURE__ */ jsx(
|
|
13
|
+
Path,
|
|
14
|
+
{
|
|
15
|
+
fill: "#000",
|
|
16
|
+
d: "M28 6c12.15 0 22 9.847 22 22 0 12.15-9.847 22-22 22-12.15 0-22-9.847-22-22C6 15.85 15.847 6 28 6m0 4c-9.943 0-18 8.058-18 18s8.058 18 18 18 18-8.058 18-18-8.058-18-18-18m-1.768 27.732a2.5 2.5 0 1 1 3.536 3.535 2.5 2.5 0 0 1-3.536-3.535M28 15.5a2 2 0 0 1 2 2v15a2 2 0 1 1-4 0v-15a2 2 0 0 1 2-2"
|
|
17
|
+
}
|
|
18
|
+
)
|
|
19
|
+
}
|
|
20
|
+
);
|
|
21
|
+
var Attention_default = SvgAttention;
|
|
22
|
+
export {
|
|
23
|
+
Attention_default as default
|
|
24
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
}
|
|
9
|
+
declare const SvgAttentionActive: (props: ISvgProps) => react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
export { SvgAttentionActive as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
}
|
|
9
|
+
declare const SvgAttentionActive: (props: ISvgProps) => react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
export { SvgAttentionActive as default };
|
|
@@ -0,0 +1,54 @@
|
|
|
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 AttentionActive_exports = {};
|
|
30
|
+
__export(AttentionActive_exports, {
|
|
31
|
+
default: () => AttentionActive_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(AttentionActive_exports);
|
|
34
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
35
|
+
var import_react_native_svg = __toESM(require("react-native-svg"));
|
|
36
|
+
const SvgAttentionActive = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
37
|
+
import_react_native_svg.default,
|
|
38
|
+
{
|
|
39
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
40
|
+
width: 24,
|
|
41
|
+
height: 24,
|
|
42
|
+
fill: "none",
|
|
43
|
+
viewBox: "0 0 56 56",
|
|
44
|
+
...props,
|
|
45
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
46
|
+
import_react_native_svg.Path,
|
|
47
|
+
{
|
|
48
|
+
fill: "#000",
|
|
49
|
+
d: "M28 6c12.15 0 22 9.847 22 22 0 12.15-9.847 22-22 22-12.15 0-22-9.847-22-22C6 15.85 15.847 6 28 6m1.414 32.086a2 2 0 1 0-2.828 2.828 2 2 0 0 0 2.828-2.828M28 15.5a2 2 0 0 0-2 2v15a2 2 0 1 0 4 0v-15a2 2 0 0 0-2-2"
|
|
50
|
+
}
|
|
51
|
+
)
|
|
52
|
+
}
|
|
53
|
+
);
|
|
54
|
+
var AttentionActive_default = SvgAttentionActive;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgAttentionActive = (props) => /* @__PURE__ */ jsx(
|
|
4
|
+
Svg,
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: 24,
|
|
8
|
+
height: 24,
|
|
9
|
+
fill: "none",
|
|
10
|
+
viewBox: "0 0 56 56",
|
|
11
|
+
...props,
|
|
12
|
+
children: /* @__PURE__ */ jsx(
|
|
13
|
+
Path,
|
|
14
|
+
{
|
|
15
|
+
fill: "#000",
|
|
16
|
+
d: "M28 6c12.15 0 22 9.847 22 22 0 12.15-9.847 22-22 22-12.15 0-22-9.847-22-22C6 15.85 15.847 6 28 6m1.414 32.086a2 2 0 1 0-2.828 2.828 2 2 0 0 0 2.828-2.828M28 15.5a2 2 0 0 0-2 2v15a2 2 0 1 0 4 0v-15a2 2 0 0 0-2-2"
|
|
17
|
+
}
|
|
18
|
+
)
|
|
19
|
+
}
|
|
20
|
+
);
|
|
21
|
+
var AttentionActive_default = SvgAttentionActive;
|
|
22
|
+
export {
|
|
23
|
+
AttentionActive_default as default
|
|
24
|
+
};
|
package/dist/Back.d.mts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
}
|
|
9
|
+
declare const SvgBack: (props: ISvgProps) => react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
export { SvgBack as default };
|
package/dist/Back.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
}
|
|
9
|
+
declare const SvgBack: (props: ISvgProps) => react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
export { SvgBack as default };
|
package/dist/Back.js
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
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 Back_exports = {};
|
|
30
|
+
__export(Back_exports, {
|
|
31
|
+
default: () => Back_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(Back_exports);
|
|
34
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
35
|
+
var import_react_native_svg = __toESM(require("react-native-svg"));
|
|
36
|
+
const SvgBack = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
37
|
+
import_react_native_svg.default,
|
|
38
|
+
{
|
|
39
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
40
|
+
width: 24,
|
|
41
|
+
height: 24,
|
|
42
|
+
fill: "none",
|
|
43
|
+
viewBox: "0 0 56 56",
|
|
44
|
+
...props,
|
|
45
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
46
|
+
import_react_native_svg.Path,
|
|
47
|
+
{
|
|
48
|
+
fill: "currentColor",
|
|
49
|
+
stroke: "currentColor",
|
|
50
|
+
d: "M20.822 28.011 39.425 9.414a2 2 0 1 0-2.828-2.828l-20.011 20.01a2 2 0 0 0 0 2.83l20.01 20.01a2 2 0 0 0 2.83-2.828z"
|
|
51
|
+
}
|
|
52
|
+
)
|
|
53
|
+
}
|
|
54
|
+
);
|
|
55
|
+
var Back_default = SvgBack;
|
package/dist/Back.mjs
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgBack = (props) => /* @__PURE__ */ jsx(
|
|
4
|
+
Svg,
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: 24,
|
|
8
|
+
height: 24,
|
|
9
|
+
fill: "none",
|
|
10
|
+
viewBox: "0 0 56 56",
|
|
11
|
+
...props,
|
|
12
|
+
children: /* @__PURE__ */ jsx(
|
|
13
|
+
Path,
|
|
14
|
+
{
|
|
15
|
+
fill: "currentColor",
|
|
16
|
+
stroke: "currentColor",
|
|
17
|
+
d: "M20.822 28.011 39.425 9.414a2 2 0 1 0-2.828-2.828l-20.011 20.01a2 2 0 0 0 0 2.83l20.01 20.01a2 2 0 0 0 2.83-2.828z"
|
|
18
|
+
}
|
|
19
|
+
)
|
|
20
|
+
}
|
|
21
|
+
);
|
|
22
|
+
var Back_default = SvgBack;
|
|
23
|
+
export {
|
|
24
|
+
Back_default as default
|
|
25
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
}
|
|
9
|
+
declare const SvgPochitto: (props: ISvgProps) => react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
export { SvgPochitto as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
}
|
|
9
|
+
declare const SvgPochitto: (props: ISvgProps) => react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
export { SvgPochitto as default };
|
package/dist/Pochitto.js
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
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 Pochitto_exports = {};
|
|
30
|
+
__export(Pochitto_exports, {
|
|
31
|
+
default: () => Pochitto_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(Pochitto_exports);
|
|
34
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
35
|
+
var import_react_native_svg = __toESM(require("react-native-svg"));
|
|
36
|
+
const SvgPochitto = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
37
|
+
import_react_native_svg.default,
|
|
38
|
+
{
|
|
39
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
40
|
+
width: 24,
|
|
41
|
+
height: 24,
|
|
42
|
+
fill: "none",
|
|
43
|
+
viewBox: "0 0 56 56",
|
|
44
|
+
...props,
|
|
45
|
+
children: [
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
47
|
+
import_react_native_svg.Path,
|
|
48
|
+
{
|
|
49
|
+
fill: "currentColor",
|
|
50
|
+
fillRule: "evenodd",
|
|
51
|
+
d: "M25.381 42.936q.02.023.038.049c3.164 4.4 8.637 6.595 13.942 5.594a13.9 13.9 0 0 0 8.96-5.857 13.9 13.9 0 0 0 2.19-10.478 13.9 13.9 0 0 0-5.859-8.957 13.89 13.89 0 0 0-10.476-2.191c-.72.136-1.46.346-2.267.644a.96.96 0 0 1-1.212-.52L24.88 7.738a2.64 2.64 0 0 0-1.532-1.285 2.66 2.66 0 0 0-2.05.155 2.66 2.66 0 0 0-1.338 1.559c-.224.68-.17 1.408.154 2.048q.016.03.029.06l.01.025 5.797 14.933a.96.96 0 0 1-.142.942l-.07.089a13 13 0 0 0-.488.651.96.96 0 0 1-1.253.296 2.7 2.7 0 0 0-1.318-.343 2.6 2.6 0 0 0-.932.17c-.67.258-1.2.76-1.491 1.413a2.67 2.67 0 0 0-.058 2.054q.015.037.026.073l.004.015c.116.39 2.387 8.007 4.18 10.954.353.58.668 1.03.963 1.377zm11.406-25.602c8.396 0 15.621 5.996 17.18 14.258a17.4 17.4 0 0 1-2.742 13.112 17.4 17.4 0 0 1-11.21 7.332c-1.075.202-2.17.305-3.253.305-5.57 0-10.847-2.698-14.14-7.224a14.5 14.5 0 0 1-1.218-1.744c-1.979-3.25-4.178-10.53-4.53-11.718a6.16 6.16 0 0 1 .169-4.637 6.17 6.17 0 0 1 4.448-3.553l-4.577-11.791a6.21 6.21 0 0 1 2.797-8.205 6.2 6.2 0 0 1 2.797-.668 6.17 6.17 0 0 1 5.602 3.543l4.916 11.399q.25-.056.497-.104a17.7 17.7 0 0 1 3.264-.305m12.988-4.247a129 129 0 0 1-.02-1.865L49.754 11c-.009-1.796-.018-3.656-.19-5.92-.093-1.234-1.101-1.808-2.049-1.735a1.93 1.93 0 0 0-1.235.539c-.357.358-.525.84-.483 1.4l.007.09c.27 2.49.491 3.877.685 5.091l.008.05c.128.793.247 1.54.367 2.5q.109.876.549 1.286.384.36 1.02.358c.355 0 .668-.13.908-.375.285-.291.442-.727.434-1.197M10.838 31.465c-.483-.497-.958-1-1.44-1.512l-.006-.005c-1.232-1.305-2.506-2.654-4.175-4.19-.912-.838-2.04-.566-2.683.132a1.94 1.94 0 0 0-.533 1.236c-.018.507.192.975.603 1.353l.068.063c1.92 1.655 3.032 2.517 4.012 3.278l.004.003.022.017c.625.485 1.219.947 1.954 1.561q.675.563 1.276.563.529 0 .992-.434c.259-.242.4-.552.407-.895.008-.407-.174-.834-.501-1.17",
|
|
52
|
+
clipRule: "evenodd"
|
|
53
|
+
}
|
|
54
|
+
),
|
|
55
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
56
|
+
import_react_native_svg.Path,
|
|
57
|
+
{
|
|
58
|
+
fill: "currentColor",
|
|
59
|
+
d: "m25.419 42.985-.206.142.003.004zm-.038-.05-.194.158zm13.98 5.644.047.246zm8.96-5.857.206.14zm2.19-10.478.246-.046zm-5.859-8.957.141-.206zm-10.476-2.191.046.246zm-2.267.644.087.235zm-1.212-.52.23-.098zM24.88 7.738l.23-.099-.004-.007-.003-.007zm-1.532-1.285-.078.238zm-2.05.155.114.224zM19.96 8.166l.238.078zm.154 2.048-.223.113.004.007zm.029.06-.23.099zm.01.025.234-.09-.006-.012zm5.797 14.933.233-.09zm-.142.942-.196-.156v.002zm-.07.089-.196-.154zm-.488.651-.207-.141zm-1.253.296-.121.219zm-2.25-.172-.09-.234zm-1.491 1.412.228.102zm-.058 2.054-.233.09zm.026.073-.241.067.001.006zm.004.015-.24.071zm4.18 10.954-.213.13zm.963 1.377.196-.156-.005-.006zm28.597-11.331.245-.047zm-2.743 13.112.207.141zm-11.21 7.332.046.246zm-17.393-6.919.202-.147-.005-.007-.005-.006zm-1.218-1.744-.214.13zm-4.53-11.718.24-.071-.002-.007-.002-.007zm.169-4.637-.229-.102zm3.447-3.265-.09-.233zm1-.288.048.245.294-.057-.108-.279zm-4.576-11.791.233-.09-.003-.01-.004-.008zm2.797-8.205-.113-.224zm8.333 2.735-.223.113v.002zm.066.14-.232.095.002.004zm4.916 11.399-.23.099.083.19.203-.045zm.497-.104-.046-.245h-.001zm16.232-6.417.25-.001zm.02 1.865.25-.004zM49.754 11h-.25v.001zm-.19-5.92.25-.02zm-2.049-1.735.018.249h.001zm-1.235.539-.177-.177zm-.483 1.4-.249.018zm.007.09-.25.02.002.007zm.685 5.091.248-.035v-.004zm0 0-.247.035v.005zm.008.05-.247.04zm.367 2.5.248-.03zm.549 1.286.17-.183zm1.02.358v-.25zm.908-.375-.179-.175zM9.397 29.954l.182-.172zm1.44 1.511-.178.174zm-1.445-1.517-.182.171zm-4.175-4.19-.17.185zm-2.683.132.184.17zm-.533 1.236.25.01zm.603 1.353.171-.182-.001-.002zm.068.063-.171.182.007.007zm4.012 3.278.156-.195-.003-.002zm0 0-.156.195.003.003zm.004.003.154-.197zm.022.017.153-.198zm1.954 1.561-.16.192zm2.268.13-.171-.184v.001zm.407-.895-.25-.006zm14.08 10.349.206-.142q-.03-.041-.05-.064l-.194.157-.194.157.026.034zm13.942 5.594-.046-.245c-5.21.983-10.586-1.173-13.693-5.495l-.203.146-.203.146c3.22 4.479 8.79 6.713 14.192 5.694zm8.96-5.857-.207-.141a13.65 13.65 0 0 1-8.799 5.753l.047.245.046.246a14.15 14.15 0 0 0 9.119-5.962zm2.19-10.478-.246.047a13.65 13.65 0 0 1-2.151 10.29l.206.14.207.142a14.15 14.15 0 0 0 2.23-10.665zm-5.859-8.957-.14.207a13.65 13.65 0 0 1 5.753 8.797l.246-.047.246-.046a14.15 14.15 0 0 0-5.964-9.117zm-10.476-2.191.046.246a13.64 13.64 0 0 1 10.29 2.152l.14-.207.141-.206a14.14 14.14 0 0 0-10.664-2.23zm-2.267.644.087.235a14 14 0 0 1 2.226-.633l-.046-.246-.047-.246a14 14 0 0 0-2.306.656zm-1.212-.52-.23.1c.255.59.925.877 1.529.655l-.087-.235-.086-.235a.71.71 0 0 1-.896-.383zM24.88 7.738l-.23.1 5.817 13.483.23-.1.23-.098-5.818-13.484zm-1.532-1.285-.077.238c.62.202 1.119.635 1.386 1.16l.223-.113.223-.113a2.89 2.89 0 0 0-1.677-1.41zm-2.05.155.114.223a2.41 2.41 0 0 1 1.858-.14l.078-.238.078-.237a2.91 2.91 0 0 0-2.24.17zM19.96 8.166l.238.077a2.41 2.41 0 0 1 1.213-1.412l-.112-.224-.113-.223c-.7.354-1.22.96-1.463 1.704zm.154 2.048.223-.113a2.41 2.41 0 0 1-.14-1.857l-.237-.078-.237-.079a2.92 2.92 0 0 0 .168 2.24zm.029.06.23-.098c-.009-.019-.022-.05-.04-.083l-.219.12-.219.121.018.039zm.01.025.229-.102-.01-.021-.23.098-.23.099.014.029zm5.797 14.933.233-.09-5.796-14.933-.233.09-.234.09 5.796 14.933zm-.142.942.196.155c.267-.336.334-.788.179-1.188l-.233.09-.234.091c.092.236.052.5-.104.696zm-.07.089.197.154.07-.09-.197-.153-.197-.154-.07.089zm-.488.651.206.142c.148-.216.31-.424.48-.639l-.198-.154-.196-.154c-.167.212-.34.433-.499.664zm-1.253.296-.121.219c.543.3 1.228.14 1.58-.373l-.206-.142-.207-.141a.71.71 0 0 1-.926.218zm-1.318-.343v.25c.408 0 .82.104 1.197.312l.12-.22.121-.218a3 3 0 0 0-1.438-.374zm-.932.17.09.234a2.4 2.4 0 0 1 .842-.154v-.5a2.9 2.9 0 0 0-1.022.187zm-1.491 1.413.228.102a2.42 2.42 0 0 1 1.352-1.281l-.09-.233-.089-.234a2.92 2.92 0 0 0-1.63 1.545zm-.058 2.054.234-.09a2.42 2.42 0 0 1 .052-1.862l-.228-.102-.229-.102a2.92 2.92 0 0 0-.062 2.245zm.026.073.24-.067a1 1 0 0 0-.033-.097l-.233.091-.233.09.018.05zm.004.015.24-.072-.005-.016-.24.073-.239.072v.002l.001.002.003.01zm4.18 10.954.214-.13c-.88-1.448-1.89-4.064-2.697-6.388-.804-2.316-1.4-4.313-1.457-4.508l-.24.072-.24.071c.059.197.657 2.203 1.465 4.53.806 2.318 1.83 4.983 2.742 6.483zm.963 1.377.19-.162c-.283-.333-.59-.772-.94-1.345l-.213.13-.213.13c.356.586.679 1.049.986 1.41zm.01.013.195-.157-.01-.012-.195.156-.195.157.01.013zm28.587-11.344.245-.047c-1.581-8.379-8.91-14.46-17.426-14.46v.5c8.275 0 15.398 5.91 16.935 14.053zm-2.743 13.112.207.141a17.64 17.64 0 0 0 2.781-13.3l-.245.047-.246.046a17.14 17.14 0 0 1-2.703 12.925zm-11.21 7.332.047.246a17.64 17.64 0 0 0 11.37-7.437l-.207-.14-.206-.142a17.14 17.14 0 0 1-11.05 7.227zm-3.253.305v.25c1.1 0 2.21-.105 3.3-.31l-.047-.245-.046-.246c-1.06.2-2.14.301-3.207.301zm-14.14-7.224-.203.147c3.34 4.59 8.693 7.327 14.343 7.327v-.5c-5.489 0-10.692-2.659-13.938-7.12zm-1.218-1.744-.214.13c.43.705.836 1.29 1.24 1.774l.192-.16.192-.16a14 14 0 0 1-1.197-1.714zm-4.53-11.718-.24.07c.177.597.816 2.719 1.66 5.1.84 2.374 1.892 5.028 2.896 6.678l.214-.13.213-.13c-.974-1.6-2.011-4.21-2.852-6.586a108 108 0 0 1-1.65-5.073zm.169-4.637-.229-.102a6.4 6.4 0 0 0-.174 4.824l.235-.085.235-.085a5.9 5.9 0 0 1 .161-4.45zm3.447-3.265-.09-.233a6.42 6.42 0 0 0-3.586 3.396l.229.102.228.102a5.92 5.92 0 0 1 3.308-3.133zm1-.288-.047-.246q-.533.106-1.043.3l.09.234.089.234c.313-.12.636-.214.96-.277zm-4.576-11.791-.233.09 4.576 11.791.233-.09.234-.09-4.577-11.791zm2.797-8.205-.113-.224a6.46 6.46 0 0 0-2.91 8.537l.226-.108.226-.108a5.96 5.96 0 0 1 2.684-7.874zm2.797-.668v-.25c-1.005 0-2.01.24-2.91.694l.113.224.113.223a6 6 0 0 1 2.684-.641zm5.536 3.403.223-.113a6.42 6.42 0 0 0-5.759-3.54v.5a5.92 5.92 0 0 1 5.313 3.266zm.066.14.23-.095a2 2 0 0 0-.074-.16l-.222.115-.222.115q.032.064.056.12zm4.916 11.399.23-.099-4.917-11.399-.23.1-.229.098 4.917 11.399zm.497-.104-.047-.245q-.25.048-.505.105l.056.244.055.244a16 16 0 0 1 .49-.102zm3.264-.305v-.25a18 18 0 0 0-3.31.31l.047.245.046.246c1.061-.2 2.143-.3 3.217-.3zm12.968-6.112-.25.002c.004.627.007 1.246.02 1.868l.25-.005.25-.005c-.013-.618-.016-1.234-.02-1.861zM49.754 11l-.25.001.001.223.25-.002.25-.001-.001-.223zm-.19-5.92-.249.018c.17 2.255.18 4.107.189 5.903l.25-.001.25-.001c-.009-1.797-.018-3.664-.19-5.939zm-2.049-1.735.02.249c.84-.065 1.7.437 1.78 1.504l.25-.019.249-.019c-.106-1.4-1.263-2.046-2.318-1.965zm-1.235.539.177.176a1.68 1.68 0 0 1 1.076-.466l-.018-.25-.018-.249a2.18 2.18 0 0 0-1.394.612zm-.483 1.4.25-.02c-.038-.493.11-.903.41-1.204l-.177-.176-.177-.177c-.413.415-.602.972-.555 1.595zm.007.09.25-.019-.007-.09-.25.019-.249.019.007.09zm.685 5.091.247-.04c-.194-1.212-.414-2.594-.683-5.077l-.249.027-.248.026c.27 2.496.492 3.887.686 5.104zm0 0 .248-.035zl-.247.035zm.008.05.247-.04-.008-.05-.247.04-.247.04.008.05zm.367 2.5.248-.03a68 68 0 0 0-.368-2.51l-.247.04-.246.04c.127.792.245 1.536.365 2.492zm.549 1.286.17-.183c-.233-.218-.403-.583-.47-1.133l-.249.03-.248.031c.075.615.275 1.11.626 1.438zm1.02.358v-.25c-.374.002-.649-.103-.85-.29l-.17.182-.17.183c.31.29.717.427 1.191.425zm.908-.375-.18-.175a1 1 0 0 1-.727.3v.5c.419 0 .798-.155 1.086-.45zm.434-1.197-.25.005c.007.415-.132.782-.363 1.017l.179.175.178.175c.34-.347.515-.85.506-1.376zM9.397 29.953l-.182.172c.483.512.96 1.016 1.444 1.514l.179-.174.18-.174c-.482-.496-.956-.997-1.439-1.51zm-.005-.005-.182.171.006.006.181-.172.182-.172-.005-.005zm-4.175-4.19-.17.185C6.71 27.47 7.98 28.815 9.21 30.119l.182-.171.182-.172c-1.232-1.305-2.511-2.66-4.188-4.201zm-2.683.132.184.17c.57-.62 1.541-.843 2.33-.117l.169-.184.17-.184c-1.035-.952-2.321-.631-3.037.146zm-.533 1.236.25.01c.013-.375.175-.759.467-1.076l-.184-.17-.183-.17a2.2 2.2 0 0 0-.6 1.398zm.603 1.353.17-.184c-.365-.335-.538-.735-.523-1.16L2 27.126l-.25-.009c-.02.589.226 1.125.684 1.546zm.068.063.17-.183-.067-.062-.17.182-.171.182.067.063zm4.012 3.278.153-.197a88 88 0 0 1-4.002-3.27l-.163.189-.164.19c1.926 1.658 3.04 2.524 4.023 3.286zm0 0 .156-.195zl-.156.195zm.004.003.154-.197-.005-.003-.153.197-.153.198.004.003zm.022.017.153-.198-.021-.016-.154.197-.153.198.021.016zm1.954 1.561.16-.192c-.739-.617-1.336-1.081-1.961-1.567l-.153.198-.154.197a64 64 0 0 1 1.947 1.556zm1.276.563v-.25c-.32 0-.69-.15-1.116-.505l-.16.192-.16.192c.475.396.956.621 1.436.621zm.992-.434-.172-.182c-.27.255-.544.366-.82.366v.5c.427 0 .818-.177 1.163-.502zm.407-.895-.25-.005a1 1 0 0 1-.328.717l.17.183.171.183c.307-.287.479-.66.487-1.072zm-.501-1.17-.18.175c.289.295.438.66.431.99l.25.005.25.006c.01-.485-.205-.974-.572-1.35z"
|
|
60
|
+
}
|
|
61
|
+
)
|
|
62
|
+
]
|
|
63
|
+
}
|
|
64
|
+
);
|
|
65
|
+
var Pochitto_default = SvgPochitto;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgPochitto = (props) => /* @__PURE__ */ jsxs(
|
|
4
|
+
Svg,
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: 24,
|
|
8
|
+
height: 24,
|
|
9
|
+
fill: "none",
|
|
10
|
+
viewBox: "0 0 56 56",
|
|
11
|
+
...props,
|
|
12
|
+
children: [
|
|
13
|
+
/* @__PURE__ */ jsx(
|
|
14
|
+
Path,
|
|
15
|
+
{
|
|
16
|
+
fill: "currentColor",
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
d: "M25.381 42.936q.02.023.038.049c3.164 4.4 8.637 6.595 13.942 5.594a13.9 13.9 0 0 0 8.96-5.857 13.9 13.9 0 0 0 2.19-10.478 13.9 13.9 0 0 0-5.859-8.957 13.89 13.89 0 0 0-10.476-2.191c-.72.136-1.46.346-2.267.644a.96.96 0 0 1-1.212-.52L24.88 7.738a2.64 2.64 0 0 0-1.532-1.285 2.66 2.66 0 0 0-2.05.155 2.66 2.66 0 0 0-1.338 1.559c-.224.68-.17 1.408.154 2.048q.016.03.029.06l.01.025 5.797 14.933a.96.96 0 0 1-.142.942l-.07.089a13 13 0 0 0-.488.651.96.96 0 0 1-1.253.296 2.7 2.7 0 0 0-1.318-.343 2.6 2.6 0 0 0-.932.17c-.67.258-1.2.76-1.491 1.413a2.67 2.67 0 0 0-.058 2.054q.015.037.026.073l.004.015c.116.39 2.387 8.007 4.18 10.954.353.58.668 1.03.963 1.377zm11.406-25.602c8.396 0 15.621 5.996 17.18 14.258a17.4 17.4 0 0 1-2.742 13.112 17.4 17.4 0 0 1-11.21 7.332c-1.075.202-2.17.305-3.253.305-5.57 0-10.847-2.698-14.14-7.224a14.5 14.5 0 0 1-1.218-1.744c-1.979-3.25-4.178-10.53-4.53-11.718a6.16 6.16 0 0 1 .169-4.637 6.17 6.17 0 0 1 4.448-3.553l-4.577-11.791a6.21 6.21 0 0 1 2.797-8.205 6.2 6.2 0 0 1 2.797-.668 6.17 6.17 0 0 1 5.602 3.543l4.916 11.399q.25-.056.497-.104a17.7 17.7 0 0 1 3.264-.305m12.988-4.247a129 129 0 0 1-.02-1.865L49.754 11c-.009-1.796-.018-3.656-.19-5.92-.093-1.234-1.101-1.808-2.049-1.735a1.93 1.93 0 0 0-1.235.539c-.357.358-.525.84-.483 1.4l.007.09c.27 2.49.491 3.877.685 5.091l.008.05c.128.793.247 1.54.367 2.5q.109.876.549 1.286.384.36 1.02.358c.355 0 .668-.13.908-.375.285-.291.442-.727.434-1.197M10.838 31.465c-.483-.497-.958-1-1.44-1.512l-.006-.005c-1.232-1.305-2.506-2.654-4.175-4.19-.912-.838-2.04-.566-2.683.132a1.94 1.94 0 0 0-.533 1.236c-.018.507.192.975.603 1.353l.068.063c1.92 1.655 3.032 2.517 4.012 3.278l.004.003.022.017c.625.485 1.219.947 1.954 1.561q.675.563 1.276.563.529 0 .992-.434c.259-.242.4-.552.407-.895.008-.407-.174-.834-.501-1.17",
|
|
19
|
+
clipRule: "evenodd"
|
|
20
|
+
}
|
|
21
|
+
),
|
|
22
|
+
/* @__PURE__ */ jsx(
|
|
23
|
+
Path,
|
|
24
|
+
{
|
|
25
|
+
fill: "currentColor",
|
|
26
|
+
d: "m25.419 42.985-.206.142.003.004zm-.038-.05-.194.158zm13.98 5.644.047.246zm8.96-5.857.206.14zm2.19-10.478.246-.046zm-5.859-8.957.141-.206zm-10.476-2.191.046.246zm-2.267.644.087.235zm-1.212-.52.23-.098zM24.88 7.738l.23-.099-.004-.007-.003-.007zm-1.532-1.285-.078.238zm-2.05.155.114.224zM19.96 8.166l.238.078zm.154 2.048-.223.113.004.007zm.029.06-.23.099zm.01.025.234-.09-.006-.012zm5.797 14.933.233-.09zm-.142.942-.196-.156v.002zm-.07.089-.196-.154zm-.488.651-.207-.141zm-1.253.296-.121.219zm-2.25-.172-.09-.234zm-1.491 1.412.228.102zm-.058 2.054-.233.09zm.026.073-.241.067.001.006zm.004.015-.24.071zm4.18 10.954-.213.13zm.963 1.377.196-.156-.005-.006zm28.597-11.331.245-.047zm-2.743 13.112.207.141zm-11.21 7.332.046.246zm-17.393-6.919.202-.147-.005-.007-.005-.006zm-1.218-1.744-.214.13zm-4.53-11.718.24-.071-.002-.007-.002-.007zm.169-4.637-.229-.102zm3.447-3.265-.09-.233zm1-.288.048.245.294-.057-.108-.279zm-4.576-11.791.233-.09-.003-.01-.004-.008zm2.797-8.205-.113-.224zm8.333 2.735-.223.113v.002zm.066.14-.232.095.002.004zm4.916 11.399-.23.099.083.19.203-.045zm.497-.104-.046-.245h-.001zm16.232-6.417.25-.001zm.02 1.865.25-.004zM49.754 11h-.25v.001zm-.19-5.92.25-.02zm-2.049-1.735.018.249h.001zm-1.235.539-.177-.177zm-.483 1.4-.249.018zm.007.09-.25.02.002.007zm.685 5.091.248-.035v-.004zm0 0-.247.035v.005zm.008.05-.247.04zm.367 2.5.248-.03zm.549 1.286.17-.183zm1.02.358v-.25zm.908-.375-.179-.175zM9.397 29.954l.182-.172zm1.44 1.511-.178.174zm-1.445-1.517-.182.171zm-4.175-4.19-.17.185zm-2.683.132.184.17zm-.533 1.236.25.01zm.603 1.353.171-.182-.001-.002zm.068.063-.171.182.007.007zm4.012 3.278.156-.195-.003-.002zm0 0-.156.195.003.003zm.004.003.154-.197zm.022.017.153-.198zm1.954 1.561-.16.192zm2.268.13-.171-.184v.001zm.407-.895-.25-.006zm14.08 10.349.206-.142q-.03-.041-.05-.064l-.194.157-.194.157.026.034zm13.942 5.594-.046-.245c-5.21.983-10.586-1.173-13.693-5.495l-.203.146-.203.146c3.22 4.479 8.79 6.713 14.192 5.694zm8.96-5.857-.207-.141a13.65 13.65 0 0 1-8.799 5.753l.047.245.046.246a14.15 14.15 0 0 0 9.119-5.962zm2.19-10.478-.246.047a13.65 13.65 0 0 1-2.151 10.29l.206.14.207.142a14.15 14.15 0 0 0 2.23-10.665zm-5.859-8.957-.14.207a13.65 13.65 0 0 1 5.753 8.797l.246-.047.246-.046a14.15 14.15 0 0 0-5.964-9.117zm-10.476-2.191.046.246a13.64 13.64 0 0 1 10.29 2.152l.14-.207.141-.206a14.14 14.14 0 0 0-10.664-2.23zm-2.267.644.087.235a14 14 0 0 1 2.226-.633l-.046-.246-.047-.246a14 14 0 0 0-2.306.656zm-1.212-.52-.23.1c.255.59.925.877 1.529.655l-.087-.235-.086-.235a.71.71 0 0 1-.896-.383zM24.88 7.738l-.23.1 5.817 13.483.23-.1.23-.098-5.818-13.484zm-1.532-1.285-.077.238c.62.202 1.119.635 1.386 1.16l.223-.113.223-.113a2.89 2.89 0 0 0-1.677-1.41zm-2.05.155.114.223a2.41 2.41 0 0 1 1.858-.14l.078-.238.078-.237a2.91 2.91 0 0 0-2.24.17zM19.96 8.166l.238.077a2.41 2.41 0 0 1 1.213-1.412l-.112-.224-.113-.223c-.7.354-1.22.96-1.463 1.704zm.154 2.048.223-.113a2.41 2.41 0 0 1-.14-1.857l-.237-.078-.237-.079a2.92 2.92 0 0 0 .168 2.24zm.029.06.23-.098c-.009-.019-.022-.05-.04-.083l-.219.12-.219.121.018.039zm.01.025.229-.102-.01-.021-.23.098-.23.099.014.029zm5.797 14.933.233-.09-5.796-14.933-.233.09-.234.09 5.796 14.933zm-.142.942.196.155c.267-.336.334-.788.179-1.188l-.233.09-.234.091c.092.236.052.5-.104.696zm-.07.089.197.154.07-.09-.197-.153-.197-.154-.07.089zm-.488.651.206.142c.148-.216.31-.424.48-.639l-.198-.154-.196-.154c-.167.212-.34.433-.499.664zm-1.253.296-.121.219c.543.3 1.228.14 1.58-.373l-.206-.142-.207-.141a.71.71 0 0 1-.926.218zm-1.318-.343v.25c.408 0 .82.104 1.197.312l.12-.22.121-.218a3 3 0 0 0-1.438-.374zm-.932.17.09.234a2.4 2.4 0 0 1 .842-.154v-.5a2.9 2.9 0 0 0-1.022.187zm-1.491 1.413.228.102a2.42 2.42 0 0 1 1.352-1.281l-.09-.233-.089-.234a2.92 2.92 0 0 0-1.63 1.545zm-.058 2.054.234-.09a2.42 2.42 0 0 1 .052-1.862l-.228-.102-.229-.102a2.92 2.92 0 0 0-.062 2.245zm.026.073.24-.067a1 1 0 0 0-.033-.097l-.233.091-.233.09.018.05zm.004.015.24-.072-.005-.016-.24.073-.239.072v.002l.001.002.003.01zm4.18 10.954.214-.13c-.88-1.448-1.89-4.064-2.697-6.388-.804-2.316-1.4-4.313-1.457-4.508l-.24.072-.24.071c.059.197.657 2.203 1.465 4.53.806 2.318 1.83 4.983 2.742 6.483zm.963 1.377.19-.162c-.283-.333-.59-.772-.94-1.345l-.213.13-.213.13c.356.586.679 1.049.986 1.41zm.01.013.195-.157-.01-.012-.195.156-.195.157.01.013zm28.587-11.344.245-.047c-1.581-8.379-8.91-14.46-17.426-14.46v.5c8.275 0 15.398 5.91 16.935 14.053zm-2.743 13.112.207.141a17.64 17.64 0 0 0 2.781-13.3l-.245.047-.246.046a17.14 17.14 0 0 1-2.703 12.925zm-11.21 7.332.047.246a17.64 17.64 0 0 0 11.37-7.437l-.207-.14-.206-.142a17.14 17.14 0 0 1-11.05 7.227zm-3.253.305v.25c1.1 0 2.21-.105 3.3-.31l-.047-.245-.046-.246c-1.06.2-2.14.301-3.207.301zm-14.14-7.224-.203.147c3.34 4.59 8.693 7.327 14.343 7.327v-.5c-5.489 0-10.692-2.659-13.938-7.12zm-1.218-1.744-.214.13c.43.705.836 1.29 1.24 1.774l.192-.16.192-.16a14 14 0 0 1-1.197-1.714zm-4.53-11.718-.24.07c.177.597.816 2.719 1.66 5.1.84 2.374 1.892 5.028 2.896 6.678l.214-.13.213-.13c-.974-1.6-2.011-4.21-2.852-6.586a108 108 0 0 1-1.65-5.073zm.169-4.637-.229-.102a6.4 6.4 0 0 0-.174 4.824l.235-.085.235-.085a5.9 5.9 0 0 1 .161-4.45zm3.447-3.265-.09-.233a6.42 6.42 0 0 0-3.586 3.396l.229.102.228.102a5.92 5.92 0 0 1 3.308-3.133zm1-.288-.047-.246q-.533.106-1.043.3l.09.234.089.234c.313-.12.636-.214.96-.277zm-4.576-11.791-.233.09 4.576 11.791.233-.09.234-.09-4.577-11.791zm2.797-8.205-.113-.224a6.46 6.46 0 0 0-2.91 8.537l.226-.108.226-.108a5.96 5.96 0 0 1 2.684-7.874zm2.797-.668v-.25c-1.005 0-2.01.24-2.91.694l.113.224.113.223a6 6 0 0 1 2.684-.641zm5.536 3.403.223-.113a6.42 6.42 0 0 0-5.759-3.54v.5a5.92 5.92 0 0 1 5.313 3.266zm.066.14.23-.095a2 2 0 0 0-.074-.16l-.222.115-.222.115q.032.064.056.12zm4.916 11.399.23-.099-4.917-11.399-.23.1-.229.098 4.917 11.399zm.497-.104-.047-.245q-.25.048-.505.105l.056.244.055.244a16 16 0 0 1 .49-.102zm3.264-.305v-.25a18 18 0 0 0-3.31.31l.047.245.046.246c1.061-.2 2.143-.3 3.217-.3zm12.968-6.112-.25.002c.004.627.007 1.246.02 1.868l.25-.005.25-.005c-.013-.618-.016-1.234-.02-1.861zM49.754 11l-.25.001.001.223.25-.002.25-.001-.001-.223zm-.19-5.92-.249.018c.17 2.255.18 4.107.189 5.903l.25-.001.25-.001c-.009-1.797-.018-3.664-.19-5.939zm-2.049-1.735.02.249c.84-.065 1.7.437 1.78 1.504l.25-.019.249-.019c-.106-1.4-1.263-2.046-2.318-1.965zm-1.235.539.177.176a1.68 1.68 0 0 1 1.076-.466l-.018-.25-.018-.249a2.18 2.18 0 0 0-1.394.612zm-.483 1.4.25-.02c-.038-.493.11-.903.41-1.204l-.177-.176-.177-.177c-.413.415-.602.972-.555 1.595zm.007.09.25-.019-.007-.09-.25.019-.249.019.007.09zm.685 5.091.247-.04c-.194-1.212-.414-2.594-.683-5.077l-.249.027-.248.026c.27 2.496.492 3.887.686 5.104zm0 0 .248-.035zl-.247.035zm.008.05.247-.04-.008-.05-.247.04-.247.04.008.05zm.367 2.5.248-.03a68 68 0 0 0-.368-2.51l-.247.04-.246.04c.127.792.245 1.536.365 2.492zm.549 1.286.17-.183c-.233-.218-.403-.583-.47-1.133l-.249.03-.248.031c.075.615.275 1.11.626 1.438zm1.02.358v-.25c-.374.002-.649-.103-.85-.29l-.17.182-.17.183c.31.29.717.427 1.191.425zm.908-.375-.18-.175a1 1 0 0 1-.727.3v.5c.419 0 .798-.155 1.086-.45zm.434-1.197-.25.005c.007.415-.132.782-.363 1.017l.179.175.178.175c.34-.347.515-.85.506-1.376zM9.397 29.953l-.182.172c.483.512.96 1.016 1.444 1.514l.179-.174.18-.174c-.482-.496-.956-.997-1.439-1.51zm-.005-.005-.182.171.006.006.181-.172.182-.172-.005-.005zm-4.175-4.19-.17.185C6.71 27.47 7.98 28.815 9.21 30.119l.182-.171.182-.172c-1.232-1.305-2.511-2.66-4.188-4.201zm-2.683.132.184.17c.57-.62 1.541-.843 2.33-.117l.169-.184.17-.184c-1.035-.952-2.321-.631-3.037.146zm-.533 1.236.25.01c.013-.375.175-.759.467-1.076l-.184-.17-.183-.17a2.2 2.2 0 0 0-.6 1.398zm.603 1.353.17-.184c-.365-.335-.538-.735-.523-1.16L2 27.126l-.25-.009c-.02.589.226 1.125.684 1.546zm.068.063.17-.183-.067-.062-.17.182-.171.182.067.063zm4.012 3.278.153-.197a88 88 0 0 1-4.002-3.27l-.163.189-.164.19c1.926 1.658 3.04 2.524 4.023 3.286zm0 0 .156-.195zl-.156.195zm.004.003.154-.197-.005-.003-.153.197-.153.198.004.003zm.022.017.153-.198-.021-.016-.154.197-.153.198.021.016zm1.954 1.561.16-.192c-.739-.617-1.336-1.081-1.961-1.567l-.153.198-.154.197a64 64 0 0 1 1.947 1.556zm1.276.563v-.25c-.32 0-.69-.15-1.116-.505l-.16.192-.16.192c.475.396.956.621 1.436.621zm.992-.434-.172-.182c-.27.255-.544.366-.82.366v.5c.427 0 .818-.177 1.163-.502zm.407-.895-.25-.005a1 1 0 0 1-.328.717l.17.183.171.183c.307-.287.479-.66.487-1.072zm-.501-1.17-.18.175c.289.295.438.66.431.99l.25.005.25.006c.01-.485-.205-.974-.572-1.35z"
|
|
27
|
+
}
|
|
28
|
+
)
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
);
|
|
32
|
+
var Pochitto_default = SvgPochitto;
|
|
33
|
+
export {
|
|
34
|
+
Pochitto_default as default
|
|
35
|
+
};
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { default as AttentionActive } from './AttentionActive.mjs';
|
|
2
|
+
export { default as Attention } from './Attention.mjs';
|
|
3
|
+
export { default as Back } from './Back.mjs';
|
|
4
|
+
export { default as Pochitto } from './Pochitto.mjs';
|
|
5
|
+
import 'react/jsx-runtime';
|
|
6
|
+
import 'react-native-svg';
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { default as AttentionActive } from './AttentionActive.js';
|
|
2
|
+
export { default as Attention } from './Attention.js';
|
|
3
|
+
export { default as Back } from './Back.js';
|
|
4
|
+
export { default as Pochitto } from './Pochitto.js';
|
|
5
|
+
import 'react/jsx-runtime';
|
|
6
|
+
import 'react-native-svg';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
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 index_exports = {};
|
|
30
|
+
__export(index_exports, {
|
|
31
|
+
Attention: () => import_Attention.default,
|
|
32
|
+
AttentionActive: () => import_AttentionActive.default,
|
|
33
|
+
Back: () => import_Back.default,
|
|
34
|
+
Pochitto: () => import_Pochitto.default
|
|
35
|
+
});
|
|
36
|
+
module.exports = __toCommonJS(index_exports);
|
|
37
|
+
var import_AttentionActive = __toESM(require("./AttentionActive"));
|
|
38
|
+
var import_Attention = __toESM(require("./Attention"));
|
|
39
|
+
var import_Back = __toESM(require("./Back"));
|
|
40
|
+
var import_Pochitto = __toESM(require("./Pochitto"));
|
|
41
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
42
|
+
0 && (module.exports = {
|
|
43
|
+
Attention,
|
|
44
|
+
AttentionActive,
|
|
45
|
+
Back,
|
|
46
|
+
Pochitto
|
|
47
|
+
});
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { default as default2 } from "./AttentionActive.mjs";
|
|
2
|
+
import { default as default3 } from "./Attention.mjs";
|
|
3
|
+
import { default as default4 } from "./Back.mjs";
|
|
4
|
+
import { default as default5 } from "./Pochitto.mjs";
|
|
5
|
+
export {
|
|
6
|
+
default3 as Attention,
|
|
7
|
+
default2 as AttentionActive,
|
|
8
|
+
default4 as Back,
|
|
9
|
+
default5 as Pochitto
|
|
10
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kanmu/popcorn-icons",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Popcorn Icons for React Native.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Kanmu Design Team",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"figma": "rimraf assets/icons && FIGMA_FILE_KEY=$FIGMA_FILE_KEY_ICONS node ./scripts/fetchFigmaIcons.js",
|
|
12
|
+
"svgr": "rimraf src/icons && svgr -d src assets",
|
|
13
|
+
"build": "tsup",
|
|
14
|
+
"clean": "rimraf dist"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"@svgr/cli": "8.1.0",
|
|
18
|
+
"@types/react": "19.2.0",
|
|
19
|
+
"react": "19.2.0",
|
|
20
|
+
"react-native-svg": "15.13.0",
|
|
21
|
+
"rimraf": "6.0.1",
|
|
22
|
+
"tsup": "8.5.0"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"@types/react": "^18 || ^19",
|
|
26
|
+
"react": "^18 || ^19",
|
|
27
|
+
"react-native-svg": "^15.13.0"
|
|
28
|
+
},
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public"
|
|
31
|
+
},
|
|
32
|
+
"exports": {
|
|
33
|
+
".": {
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"import": "./dist/index.mjs",
|
|
36
|
+
"require": "./dist/index.js",
|
|
37
|
+
"default": "./dist/index.js"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"main": "dist/index.js",
|
|
41
|
+
"module": "dist/index.mjs",
|
|
42
|
+
"types": "dist/index.d.ts",
|
|
43
|
+
"sideEffects": false,
|
|
44
|
+
"peerDependenciesMeta": {
|
|
45
|
+
"@types/react": {
|
|
46
|
+
"optional": true
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"packageManager": "yarn@3.8.7"
|
|
50
|
+
}
|