@particle-network/icons 0.0.8 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/native/CircleFilledIcon.d.ts +7 -0
- package/dist/native/CircleFilledIcon.js +25 -0
- package/dist/native/{DailyPoetryIcon.d.ts → DollarWhiteIcon.d.ts} +2 -2
- package/dist/native/DollarWhiteIcon.js +38 -0
- package/dist/native/{Wallet2Icon.d.ts → EyeIcon.d.ts} +2 -2
- package/dist/native/EyeIcon.js +23 -0
- package/dist/{web/Wallet2Icon.d.ts → native/FolderIcon.d.ts} +2 -2
- package/dist/native/{Wallet2Icon.js → FolderIcon.js} +4 -4
- package/dist/native/PersonFollowIcon.d.ts +7 -0
- package/dist/native/PersonFollowIcon.js +43 -0
- package/dist/{web/DailyPoetryIcon.d.ts → native/PlusIcon.d.ts} +2 -2
- package/dist/native/PlusIcon.js +23 -0
- package/dist/native/RadioOffIcon.d.ts +7 -0
- package/dist/native/RadioOffIcon.js +24 -0
- package/dist/native/RadioOnIcon.d.ts +7 -0
- package/dist/native/RadioOnIcon.js +46 -0
- package/dist/native/SortAscIcon.d.ts +7 -0
- package/dist/native/SortAscIcon.js +23 -0
- package/dist/native/SortDescIcon.d.ts +7 -0
- package/dist/native/SortDescIcon.js +23 -0
- package/dist/native/TimeEndIcon.d.ts +7 -0
- package/dist/native/TimeEndIcon.js +29 -0
- package/dist/native/TimerIcon.d.ts +7 -0
- package/dist/native/TimerIcon.js +45 -0
- package/dist/native/TriangleUpIcon.d.ts +7 -0
- package/dist/native/TriangleUpIcon.js +23 -0
- package/dist/native/TweetIcon.d.ts +7 -0
- package/dist/native/{DailyPoetryIcon.js → TweetIcon.js} +4 -4
- package/dist/native/WalletImportIcon.d.ts +7 -0
- package/dist/native/WalletImportIcon.js +30 -0
- package/dist/native/index.d.ts +15 -2
- package/dist/native/index.js +16 -3
- package/dist/web/CircleFilledIcon.d.ts +7 -0
- package/dist/web/CircleFilledIcon.js +24 -0
- package/dist/web/DollarWhiteIcon.d.ts +7 -0
- package/dist/web/DollarWhiteIcon.js +37 -0
- package/dist/web/EyeIcon.d.ts +7 -0
- package/dist/web/EyeIcon.js +22 -0
- package/dist/web/FolderIcon.d.ts +7 -0
- package/dist/web/{Wallet2Icon.js → FolderIcon.js} +4 -4
- package/dist/web/PersonFollowIcon.d.ts +7 -0
- package/dist/web/PersonFollowIcon.js +42 -0
- package/dist/web/PlusIcon.d.ts +7 -0
- package/dist/web/PlusIcon.js +22 -0
- package/dist/web/RadioOffIcon.d.ts +7 -0
- package/dist/web/RadioOffIcon.js +23 -0
- package/dist/web/RadioOnIcon.d.ts +7 -0
- package/dist/web/RadioOnIcon.js +45 -0
- package/dist/web/SortAscIcon.d.ts +7 -0
- package/dist/web/SortAscIcon.js +22 -0
- package/dist/web/SortDescIcon.d.ts +7 -0
- package/dist/web/SortDescIcon.js +22 -0
- package/dist/web/TimeEndIcon.d.ts +7 -0
- package/dist/web/TimeEndIcon.js +28 -0
- package/dist/web/TimerIcon.d.ts +7 -0
- package/dist/web/TimerIcon.js +44 -0
- package/dist/web/TriangleUpIcon.d.ts +7 -0
- package/dist/web/TriangleUpIcon.js +22 -0
- package/dist/web/TweetIcon.d.ts +7 -0
- package/dist/web/{DailyPoetryIcon.js → TweetIcon.js} +4 -4
- package/dist/web/WalletImportIcon.d.ts +7 -0
- package/dist/web/WalletImportIcon.js +29 -0
- package/dist/web/index.d.ts +15 -2
- package/dist/web/index.js +16 -3
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type IconColor } from '../core';
|
|
2
|
+
import { type IconProps } from './types';
|
|
3
|
+
declare const CircleFilledIcon: {
|
|
4
|
+
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
export default CircleFilledIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import external_react_native_svg_default, { Circle } from "react-native-svg";
|
|
4
|
+
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
+
const CircleFilledIcon_CircleFilledIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
|
+
const { getColor } = useIconsContext();
|
|
7
|
+
const _color = isThemeColor(color) ? getColor(color) : color;
|
|
8
|
+
const fill = props.fill || _color;
|
|
9
|
+
return /*#__PURE__*/ jsx(external_react_native_svg_default, {
|
|
10
|
+
width: width,
|
|
11
|
+
height: height,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
...props,
|
|
15
|
+
children: /*#__PURE__*/ jsx(Circle, {
|
|
16
|
+
cx: 12,
|
|
17
|
+
cy: 12,
|
|
18
|
+
r: 10,
|
|
19
|
+
fill: fill
|
|
20
|
+
})
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
CircleFilledIcon_CircleFilledIcon.displayName = 'CircleFilledIcon|circle-filled';
|
|
24
|
+
const CircleFilledIcon = CircleFilledIcon_CircleFilledIcon;
|
|
25
|
+
export { CircleFilledIcon as default };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type IconColor } from '../core';
|
|
2
2
|
import { type IconProps } from './types';
|
|
3
|
-
declare const
|
|
3
|
+
declare const DollarWhiteIcon: {
|
|
4
4
|
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
displayName: string;
|
|
6
6
|
};
|
|
7
|
-
export default
|
|
7
|
+
export default DollarWhiteIcon;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import external_react_native_svg_default, { ClipPath, Defs, G, Path, Rect } from "react-native-svg";
|
|
4
|
+
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
+
const DollarWhiteIcon_DollarWhiteIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
|
+
const { getColor } = useIconsContext();
|
|
7
|
+
isThemeColor(color) && getColor(color);
|
|
8
|
+
props.fill;
|
|
9
|
+
return /*#__PURE__*/ jsxs(external_react_native_svg_default, {
|
|
10
|
+
width: width,
|
|
11
|
+
height: height,
|
|
12
|
+
viewBox: "0 0 20 20",
|
|
13
|
+
fill: "none",
|
|
14
|
+
...props,
|
|
15
|
+
children: [
|
|
16
|
+
/*#__PURE__*/ jsx(G, {
|
|
17
|
+
clipPath: "url(#prefix__clip0_8085_433)",
|
|
18
|
+
children: /*#__PURE__*/ jsx(Path, {
|
|
19
|
+
d: "M9.92404 1.81789C14.4704 1.81789 18.1701 5.51757 18.1701 10.0639C18.1701 14.6103 14.4704 18.31 9.92404 18.31C5.37768 18.31 1.678 14.6103 1.678 10.0639C1.678 5.51755 5.37768 1.81789 9.92404 1.81789ZM9.92404 0.639893C4.71966 0.639893 0.5 4.85955 0.5 10.064C0.5 15.2684 4.71966 19.488 9.92404 19.488C15.1285 19.488 19.3481 15.2684 19.3481 10.064C19.3481 4.85955 15.1284 0.639893 9.92404 0.639893ZM9.92404 2.99591C6.0196 2.99591 2.85602 6.15951 2.85602 10.064C2.85602 13.9673 6.0196 17.132 9.92404 17.132C13.8273 17.132 16.9921 13.9673 16.9921 10.064C16.9921 6.15951 13.8273 2.99591 9.92404 2.99591ZM12.494 13.7027C12.0304 14.2226 11.3609 14.5287 10.4854 14.6207V15.954H9.36952V14.6276C7.90966 14.478 7.0066 13.629 6.65802 12.0829L8.38362 11.6331C8.54356 12.6052 9.07274 13.0907 9.97118 13.0907C10.3911 13.0907 10.7017 12.9871 10.8996 12.7789C11.0975 12.5707 11.1964 12.3199 11.1964 12.0254C11.1964 11.7205 11.0975 11.4892 10.8996 11.3328C10.7017 11.1752 10.2611 10.9762 9.57892 10.7346C8.96576 10.5218 8.486 10.3124 8.14088 10.1031C7.79576 9.89597 7.51506 9.60493 7.29994 9.23101C7.08482 8.85595 6.97668 8.41881 6.97668 7.92185C6.97668 7.26955 7.16994 6.68171 7.5542 6.15943C7.93844 5.63831 8.54354 5.31963 9.36954 5.20343V4.17389H10.4855V5.20349C11.7325 5.35307 12.54 6.05825 12.907 7.32021L11.3701 7.95063C11.0698 7.08553 10.6074 6.65299 9.97928 6.65299C9.66402 6.65299 9.41094 6.74963 9.22116 6.94289C9.03016 7.13615 8.9347 7.37083 8.9347 7.64579C8.9347 7.92649 9.02674 8.14163 9.2108 8.29233C9.39372 8.44193 9.7883 8.62711 10.3911 8.84913C11.0537 9.09075 11.5737 9.31965 11.9499 9.53477C12.3272 9.74989 12.6275 10.0479 12.8529 10.4263C13.0773 10.806 13.19 11.2489 13.19 11.7562C13.19 12.535 12.9576 13.1838 12.494 13.7027Z",
|
|
20
|
+
fill: "white"
|
|
21
|
+
})
|
|
22
|
+
}),
|
|
23
|
+
/*#__PURE__*/ jsx(Defs, {
|
|
24
|
+
children: /*#__PURE__*/ jsx(ClipPath, {
|
|
25
|
+
id: "prefix__clip0_8085_433",
|
|
26
|
+
children: /*#__PURE__*/ jsx(Rect, {
|
|
27
|
+
width: 20,
|
|
28
|
+
height: 20,
|
|
29
|
+
fill: "white"
|
|
30
|
+
})
|
|
31
|
+
})
|
|
32
|
+
})
|
|
33
|
+
]
|
|
34
|
+
});
|
|
35
|
+
};
|
|
36
|
+
DollarWhiteIcon_DollarWhiteIcon.displayName = 'DollarWhiteIcon|dollar-white';
|
|
37
|
+
const DollarWhiteIcon = DollarWhiteIcon_DollarWhiteIcon;
|
|
38
|
+
export { DollarWhiteIcon as default };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type IconColor } from '../core';
|
|
2
2
|
import { type IconProps } from './types';
|
|
3
|
-
declare const
|
|
3
|
+
declare const EyeIcon: {
|
|
4
4
|
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
displayName: string;
|
|
6
6
|
};
|
|
7
|
-
export default
|
|
7
|
+
export default EyeIcon;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import external_react_native_svg_default, { Path } from "react-native-svg";
|
|
4
|
+
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
+
const EyeIcon_EyeIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
|
+
const { getColor } = useIconsContext();
|
|
7
|
+
const _color = isThemeColor(color) ? getColor(color) : color;
|
|
8
|
+
const fill = props.fill || _color;
|
|
9
|
+
return /*#__PURE__*/ jsx(external_react_native_svg_default, {
|
|
10
|
+
width: width,
|
|
11
|
+
height: height,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
...props,
|
|
15
|
+
children: /*#__PURE__*/ jsx(Path, {
|
|
16
|
+
d: "M12 4.33435C16.5926 4.33435 20.4135 7.63911 21.215 12C20.4144 16.361 16.5926 19.6657 12 19.6657C7.40741 19.6657 3.58649 16.361 2.785 12C3.58564 7.63911 7.40741 4.33435 12 4.33435ZM12 17.9622C13.7371 17.9619 15.4226 17.3718 16.7807 16.2887C18.1388 15.2056 19.089 13.6935 19.4757 12C19.0876 10.3079 18.1368 8.79748 16.7788 7.71579C15.4209 6.6341 13.7361 6.0451 12 6.0451C10.2639 6.0451 8.57914 6.6341 7.2212 7.71579C5.86325 8.79748 4.91246 10.3079 4.52426 12C4.91103 13.6935 5.86122 15.2056 7.2193 16.2887C8.57738 17.3718 10.2629 17.9619 12 17.9622ZM12 15.8329C10.9835 15.8329 10.0086 15.4291 9.28978 14.7103C8.57098 13.9915 8.16716 13.0166 8.16716 12C8.16716 10.9835 8.57098 10.0086 9.28978 9.2898C10.0086 8.57101 10.9835 8.16719 12 8.16719C13.0165 8.16719 13.9914 8.57101 14.7102 9.2898C15.429 10.0086 15.8328 10.9835 15.8328 12C15.8328 13.0166 15.429 13.9915 14.7102 14.7103C13.9914 15.4291 13.0165 15.8329 12 15.8329ZM12 14.1294C12.2796 14.1294 12.5565 14.0743 12.8149 13.9673C13.0732 13.8603 13.308 13.7034 13.5057 13.5057C13.7034 13.308 13.8603 13.0732 13.9673 12.8149C14.0743 12.5566 14.1294 12.2797 14.1294 12C14.1294 11.7204 14.0743 11.4435 13.9673 11.1852C13.8603 10.9268 13.7034 10.6921 13.5057 10.4943C13.308 10.2966 13.0732 10.1398 12.8149 10.0328C12.5565 9.92575 12.2796 9.87068 12 9.87068C11.4353 9.87068 10.8937 10.095 10.4943 10.4943C10.095 10.8937 9.87065 11.4353 9.87065 12C9.87065 12.5648 10.095 13.1064 10.4943 13.5057C10.8937 13.905 11.4353 14.1294 12 14.1294Z",
|
|
17
|
+
fill: fill
|
|
18
|
+
})
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
EyeIcon_EyeIcon.displayName = 'EyeIcon|eye';
|
|
22
|
+
const EyeIcon = EyeIcon_EyeIcon;
|
|
23
|
+
export { EyeIcon as default };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type IconColor } from '../core';
|
|
2
2
|
import { type IconProps } from './types';
|
|
3
|
-
declare const
|
|
3
|
+
declare const FolderIcon: {
|
|
4
4
|
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
displayName: string;
|
|
6
6
|
};
|
|
7
|
-
export default
|
|
7
|
+
export default FolderIcon;
|
|
@@ -2,7 +2,7 @@ import { jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import "react";
|
|
3
3
|
import external_react_native_svg_default, { Path } from "react-native-svg";
|
|
4
4
|
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
-
const
|
|
5
|
+
const FolderIcon_FolderIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
6
|
const { getColor } = useIconsContext();
|
|
7
7
|
const _color = isThemeColor(color) ? getColor(color) : color;
|
|
8
8
|
const fill = props.fill || _color;
|
|
@@ -18,6 +18,6 @@ const Wallet2Icon_Wallet2Icon = ({ size = 16, width = size, height = size, color
|
|
|
18
18
|
})
|
|
19
19
|
});
|
|
20
20
|
};
|
|
21
|
-
|
|
22
|
-
const
|
|
23
|
-
export {
|
|
21
|
+
FolderIcon_FolderIcon.displayName = 'FolderIcon|folder';
|
|
22
|
+
const FolderIcon = FolderIcon_FolderIcon;
|
|
23
|
+
export { FolderIcon as default };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type IconColor } from '../core';
|
|
2
|
+
import { type IconProps } from './types';
|
|
3
|
+
declare const PersonFollowIcon: {
|
|
4
|
+
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
export default PersonFollowIcon;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import external_react_native_svg_default, { Circle, Path } from "react-native-svg";
|
|
4
|
+
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
+
const PersonFollowIcon_PersonFollowIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
|
+
const { getColor } = useIconsContext();
|
|
7
|
+
const _color = isThemeColor(color) ? getColor(color) : color;
|
|
8
|
+
const stroke = props.stroke || _color;
|
|
9
|
+
return /*#__PURE__*/ jsxs(external_react_native_svg_default, {
|
|
10
|
+
width: width,
|
|
11
|
+
height: height,
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
fill: "none",
|
|
14
|
+
...props,
|
|
15
|
+
children: [
|
|
16
|
+
/*#__PURE__*/ jsx(Circle, {
|
|
17
|
+
cx: 8.28125,
|
|
18
|
+
cy: 5.30664,
|
|
19
|
+
r: 3.00586,
|
|
20
|
+
stroke: stroke
|
|
21
|
+
}),
|
|
22
|
+
/*#__PURE__*/ jsx(Path, {
|
|
23
|
+
d: "M3.60547 13.487C3.60547 10.9053 5.6983 8.8125 8.27994 8.8125C8.69974 8.8125 9.10661 8.86784 9.49366 8.97162",
|
|
24
|
+
stroke: stroke,
|
|
25
|
+
strokeLinecap: "round",
|
|
26
|
+
strokeLinejoin: "round"
|
|
27
|
+
}),
|
|
28
|
+
/*#__PURE__*/ jsx(Path, {
|
|
29
|
+
d: "M10 12L14 12",
|
|
30
|
+
stroke: stroke,
|
|
31
|
+
strokeLinecap: "round"
|
|
32
|
+
}),
|
|
33
|
+
/*#__PURE__*/ jsx(Path, {
|
|
34
|
+
d: "M12 14L12 10",
|
|
35
|
+
stroke: stroke,
|
|
36
|
+
strokeLinecap: "round"
|
|
37
|
+
})
|
|
38
|
+
]
|
|
39
|
+
});
|
|
40
|
+
};
|
|
41
|
+
PersonFollowIcon_PersonFollowIcon.displayName = 'PersonFollowIcon|person-follow';
|
|
42
|
+
const PersonFollowIcon = PersonFollowIcon_PersonFollowIcon;
|
|
43
|
+
export { PersonFollowIcon as default };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type IconColor } from '../core';
|
|
2
2
|
import { type IconProps } from './types';
|
|
3
|
-
declare const
|
|
3
|
+
declare const PlusIcon: {
|
|
4
4
|
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
displayName: string;
|
|
6
6
|
};
|
|
7
|
-
export default
|
|
7
|
+
export default PlusIcon;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import external_react_native_svg_default, { Path } from "react-native-svg";
|
|
4
|
+
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
+
const PlusIcon_PlusIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
|
+
const { getColor } = useIconsContext();
|
|
7
|
+
const _color = isThemeColor(color) ? getColor(color) : color;
|
|
8
|
+
const fill = props.fill || _color;
|
|
9
|
+
return /*#__PURE__*/ jsx(external_react_native_svg_default, {
|
|
10
|
+
width: width,
|
|
11
|
+
height: height,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
...props,
|
|
15
|
+
children: /*#__PURE__*/ jsx(Path, {
|
|
16
|
+
d: "M17.3443 11.0415H13.2728V6.96997C13.2728 6.43698 12.8429 6.00719 12.31 6.00719C11.7771 6.00719 11.3472 6.43698 11.3472 6.96997V11.0415H7.28134C6.74835 11.0415 6.31857 11.4713 6.31857 12.0042C6.31857 12.5372 6.74835 12.9671 7.28134 12.9671H11.3472V17.0387C11.3472 17.5717 11.7771 18.0015 12.31 18.0015C12.8429 18.0015 13.2728 17.5717 13.2728 17.0387V12.9671H17.3443C17.8773 12.9671 18.3071 12.5372 18.3071 12.0042C18.3071 11.4713 17.8773 11.0415 17.3443 11.0415Z",
|
|
17
|
+
fill: fill
|
|
18
|
+
})
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
PlusIcon_PlusIcon.displayName = 'PlusIcon|plus';
|
|
22
|
+
const PlusIcon = PlusIcon_PlusIcon;
|
|
23
|
+
export { PlusIcon as default };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type IconColor } from '../core';
|
|
2
|
+
import { type IconProps } from './types';
|
|
3
|
+
declare const RadioOffIcon: {
|
|
4
|
+
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
export default RadioOffIcon;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import external_react_native_svg_default, { Path } from "react-native-svg";
|
|
4
|
+
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
+
const RadioOffIcon_RadioOffIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
|
+
const { getColor } = useIconsContext();
|
|
7
|
+
const _color = isThemeColor(color) ? getColor(color) : color;
|
|
8
|
+
const stroke = props.stroke || _color;
|
|
9
|
+
return /*#__PURE__*/ jsx(external_react_native_svg_default, {
|
|
10
|
+
width: width,
|
|
11
|
+
height: height,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
...props,
|
|
15
|
+
children: /*#__PURE__*/ jsx(Path, {
|
|
16
|
+
d: "M12 22.5C17.799 22.5 22.5 17.799 22.5 12C22.5 6.20101 17.799 1.5 12 1.5C6.20101 1.5 1.5 6.20101 1.5 12C1.5 17.799 6.20101 22.5 12 22.5Z",
|
|
17
|
+
stroke: stroke,
|
|
18
|
+
strokeWidth: 1.8
|
|
19
|
+
})
|
|
20
|
+
});
|
|
21
|
+
};
|
|
22
|
+
RadioOffIcon_RadioOffIcon.displayName = 'RadioOffIcon|radio-off';
|
|
23
|
+
const RadioOffIcon = RadioOffIcon_RadioOffIcon;
|
|
24
|
+
export { RadioOffIcon as default };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type IconColor } from '../core';
|
|
2
|
+
import { type IconProps } from './types';
|
|
3
|
+
declare const RadioOnIcon: {
|
|
4
|
+
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
export default RadioOnIcon;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import external_react_native_svg_default, { ClipPath, Defs, G, Path, Rect } from "react-native-svg";
|
|
4
|
+
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
+
const RadioOnIcon_RadioOnIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
|
+
const { getColor } = useIconsContext();
|
|
7
|
+
const _color = isThemeColor(color) ? getColor(color) : color;
|
|
8
|
+
const fill = props.fill || _color;
|
|
9
|
+
const stroke = props.stroke || _color;
|
|
10
|
+
return /*#__PURE__*/ jsxs(external_react_native_svg_default, {
|
|
11
|
+
width: width,
|
|
12
|
+
height: height,
|
|
13
|
+
viewBox: "0 0 24 24",
|
|
14
|
+
fill: "none",
|
|
15
|
+
...props,
|
|
16
|
+
children: [
|
|
17
|
+
/*#__PURE__*/ jsxs(G, {
|
|
18
|
+
clipPath: "url(#prefix__clip0_327_1087)",
|
|
19
|
+
children: [
|
|
20
|
+
/*#__PURE__*/ jsx(Path, {
|
|
21
|
+
d: "M12 22.5C17.799 22.5 22.5 17.799 22.5 12C22.5 6.20101 17.799 1.5 12 1.5C6.20101 1.5 1.5 6.20101 1.5 12C1.5 17.799 6.20101 22.5 12 22.5Z",
|
|
22
|
+
stroke: stroke,
|
|
23
|
+
strokeWidth: 1.8
|
|
24
|
+
}),
|
|
25
|
+
/*#__PURE__*/ jsx(Path, {
|
|
26
|
+
d: "M12 18C15.3137 18 18 15.3137 18 12C18 8.68629 15.3137 6 12 6C8.68629 6 6 8.68629 6 12C6 15.3137 8.68629 18 12 18Z",
|
|
27
|
+
fill: fill
|
|
28
|
+
})
|
|
29
|
+
]
|
|
30
|
+
}),
|
|
31
|
+
/*#__PURE__*/ jsx(Defs, {
|
|
32
|
+
children: /*#__PURE__*/ jsx(ClipPath, {
|
|
33
|
+
id: "prefix__clip0_327_1087",
|
|
34
|
+
children: /*#__PURE__*/ jsx(Rect, {
|
|
35
|
+
width: 24,
|
|
36
|
+
height: 24,
|
|
37
|
+
fill: "white"
|
|
38
|
+
})
|
|
39
|
+
})
|
|
40
|
+
})
|
|
41
|
+
]
|
|
42
|
+
});
|
|
43
|
+
};
|
|
44
|
+
RadioOnIcon_RadioOnIcon.displayName = 'RadioOnIcon|radio-on';
|
|
45
|
+
const RadioOnIcon = RadioOnIcon_RadioOnIcon;
|
|
46
|
+
export { RadioOnIcon as default };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type IconColor } from '../core';
|
|
2
|
+
import { type IconProps } from './types';
|
|
3
|
+
declare const SortAscIcon: {
|
|
4
|
+
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
export default SortAscIcon;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import external_react_native_svg_default, { Path } from "react-native-svg";
|
|
4
|
+
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
+
const SortAscIcon_SortAscIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
|
+
const { getColor } = useIconsContext();
|
|
7
|
+
const _color = isThemeColor(color) ? getColor(color) : color;
|
|
8
|
+
const fill = props.fill || _color;
|
|
9
|
+
return /*#__PURE__*/ jsx(external_react_native_svg_default, {
|
|
10
|
+
width: width,
|
|
11
|
+
height: height,
|
|
12
|
+
viewBox: "0 0 6 5",
|
|
13
|
+
fill: "none",
|
|
14
|
+
...props,
|
|
15
|
+
children: /*#__PURE__*/ jsx(Path, {
|
|
16
|
+
d: "M2.40164 0.757802C2.79558 0.345103 3.45442 0.345102 3.84836 0.757801L5.63636 2.63095C6.2438 3.26731 5.79275 4.32143 4.91301 4.32143H1.33699C0.457254 4.32143 0.00619864 3.26732 0.613636 2.63095L2.40164 0.757802Z",
|
|
17
|
+
fill: fill
|
|
18
|
+
})
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
SortAscIcon_SortAscIcon.displayName = 'SortAscIcon|sort-asc';
|
|
22
|
+
const SortAscIcon = SortAscIcon_SortAscIcon;
|
|
23
|
+
export { SortAscIcon as default };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type IconColor } from '../core';
|
|
2
|
+
import { type IconProps } from './types';
|
|
3
|
+
declare const SortDescIcon: {
|
|
4
|
+
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
export default SortDescIcon;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import external_react_native_svg_default, { Path } from "react-native-svg";
|
|
4
|
+
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
+
const SortDescIcon_SortDescIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
|
+
const { getColor } = useIconsContext();
|
|
7
|
+
const _color = isThemeColor(color) ? getColor(color) : color;
|
|
8
|
+
const fill = props.fill || _color;
|
|
9
|
+
return /*#__PURE__*/ jsx(external_react_native_svg_default, {
|
|
10
|
+
width: width,
|
|
11
|
+
height: height,
|
|
12
|
+
viewBox: "0 0 6 5",
|
|
13
|
+
fill: "none",
|
|
14
|
+
...props,
|
|
15
|
+
children: /*#__PURE__*/ jsx(Path, {
|
|
16
|
+
d: "M3.84836 4.2422C3.45442 4.6549 2.79558 4.6549 2.40164 4.2422L0.613637 2.36905C0.00619985 1.73268 0.457254 0.678571 1.33699 0.678571L4.91301 0.678571C5.79275 0.678571 6.2438 1.73268 5.63636 2.36905L3.84836 4.2422Z",
|
|
17
|
+
fill: fill
|
|
18
|
+
})
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
SortDescIcon_SortDescIcon.displayName = 'SortDescIcon|sort-desc';
|
|
22
|
+
const SortDescIcon = SortDescIcon_SortDescIcon;
|
|
23
|
+
export { SortDescIcon as default };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type IconColor } from '../core';
|
|
2
|
+
import { type IconProps } from './types';
|
|
3
|
+
declare const TimeEndIcon: {
|
|
4
|
+
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
export default TimeEndIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import external_react_native_svg_default, { Path } from "react-native-svg";
|
|
4
|
+
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
+
const TimeEndIcon_TimeEndIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
|
+
const { getColor } = useIconsContext();
|
|
7
|
+
const _color = isThemeColor(color) ? getColor(color) : color;
|
|
8
|
+
const fill = props.fill || _color;
|
|
9
|
+
return /*#__PURE__*/ jsxs(external_react_native_svg_default, {
|
|
10
|
+
width: width,
|
|
11
|
+
height: height,
|
|
12
|
+
viewBox: "0 0 14 14",
|
|
13
|
+
fill: "none",
|
|
14
|
+
...props,
|
|
15
|
+
children: [
|
|
16
|
+
/*#__PURE__*/ jsx(Path, {
|
|
17
|
+
d: "M3.95898 0.847656H10.1148C10.1137 1.0668 10.1125 1.28477 10.1125 1.50391C9.21015 1.50508 8.30898 1.50273 7.40663 1.50508C7.40429 1.96797 7.40312 2.43203 7.41015 2.89609C8.87851 2.9957 10.2848 3.76562 11.1379 4.9668C12.1586 6.35898 12.3484 8.27383 11.7426 9.87461C11.0394 11.7555 9.14687 13.1066 7.13593 13.1523H6.86171C5.51757 13.1102 4.2039 12.5172 3.2957 11.5258C2.42148 10.6 1.93749 9.34141 1.90234 8.07344V7.91172C1.9328 6.81484 2.30195 5.72734 2.98398 4.86367C3.85937 3.72227 5.23163 2.99453 6.66484 2.89492C6.66718 2.43086 6.66718 1.9668 6.66484 1.50391C5.76249 1.50391 4.86015 1.50625 3.95781 1.50273C3.95781 1.28359 3.95898 1.06563 3.95898 0.847656ZM5.94765 3.85469C4.69726 4.17227 3.61562 5.08633 3.0953 6.26758C2.62187 7.31641 2.61132 8.55859 3.05546 9.61914C3.56288 10.873 4.67851 11.8703 5.99335 12.202C7.04921 12.4785 8.21054 12.2945 9.13867 11.7238C10.573 10.8648 11.4449 9.14102 11.2293 7.47578C11.0758 6.19023 10.2976 5.00312 9.19023 4.33633C8.23281 3.74805 7.03515 3.57109 5.94765 3.85469Z",
|
|
18
|
+
fill: fill
|
|
19
|
+
}),
|
|
20
|
+
/*#__PURE__*/ jsx(Path, {
|
|
21
|
+
d: "M6.66719 5.60547H7.32227C7.32344 6.75391 7.32344 7.90234 7.32344 9.05078H6.66719C6.66602 7.90234 6.66719 6.75391 6.66719 5.60547Z",
|
|
22
|
+
fill: fill
|
|
23
|
+
})
|
|
24
|
+
]
|
|
25
|
+
});
|
|
26
|
+
};
|
|
27
|
+
TimeEndIcon_TimeEndIcon.displayName = 'TimeEndIcon|time-end';
|
|
28
|
+
const TimeEndIcon = TimeEndIcon_TimeEndIcon;
|
|
29
|
+
export { TimeEndIcon as default };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type IconColor } from '../core';
|
|
2
|
+
import { type IconProps } from './types';
|
|
3
|
+
declare const TimerIcon: {
|
|
4
|
+
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
export default TimerIcon;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import external_react_native_svg_default, { ClipPath, Defs, G, Path, Rect } from "react-native-svg";
|
|
4
|
+
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
+
const TimerIcon_TimerIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
|
+
const { getColor } = useIconsContext();
|
|
7
|
+
const _color = isThemeColor(color) ? getColor(color) : color;
|
|
8
|
+
const fill = props.fill || _color;
|
|
9
|
+
return /*#__PURE__*/ jsxs(external_react_native_svg_default, {
|
|
10
|
+
width: width,
|
|
11
|
+
height: height,
|
|
12
|
+
viewBox: "0 0 13 13",
|
|
13
|
+
fill: "none",
|
|
14
|
+
...props,
|
|
15
|
+
children: [
|
|
16
|
+
/*#__PURE__*/ jsxs(G, {
|
|
17
|
+
clipPath: "url(#prefix__clip0_1726_1157)",
|
|
18
|
+
children: [
|
|
19
|
+
/*#__PURE__*/ jsx(Path, {
|
|
20
|
+
d: "M11.9133 3.06158C11.6433 3.01658 11.3833 3.19158 11.3333 3.46158L11.3033 3.61658C11.1033 3.29658 10.8683 2.99658 10.5983 2.72158C10.1232 2.24609 9.5588 1.86922 8.93754 1.61265C8.31629 1.35608 7.65043 1.22488 6.97828 1.22658C4.15828 1.22658 1.86328 3.52158 1.86328 6.34158C1.86328 9.16158 4.15828 11.4616 6.97828 11.4616C7.65077 11.4626 8.31682 11.3305 8.93809 11.0731C9.55936 10.8157 10.1236 10.4379 10.5983 9.96158C10.8133 9.74658 10.8133 9.40158 10.5983 9.18158C10.3833 8.96658 10.0383 8.96658 9.81828 9.18158C9.44575 9.55536 9.00315 9.85198 8.51582 10.0545C8.02849 10.2569 7.506 10.3613 6.97828 10.3616C4.76328 10.3616 2.96328 8.55658 2.96328 6.34158C2.96328 4.12658 4.76328 2.32658 6.97828 2.32658C8.04828 2.32658 9.05828 2.74158 9.81828 3.49658C10.0733 3.75658 10.2833 4.04158 10.4583 4.34158L9.97828 4.10658C9.72828 3.98658 9.43328 4.08658 9.30828 4.33158C9.18328 4.58158 9.28828 4.88158 9.53328 5.00158L10.9533 5.70158C11.0583 5.75658 11.1733 5.78158 11.2933 5.78158C11.4133 5.78158 11.5183 5.75658 11.6233 5.70658C11.8383 5.60158 11.9883 5.40158 12.0333 5.16658L12.3133 3.63658C12.3369 3.50665 12.3081 3.37264 12.2331 3.26392C12.1582 3.15521 12.0431 3.08065 11.9133 3.05658V3.06158Z",
|
|
21
|
+
fill: fill
|
|
22
|
+
}),
|
|
23
|
+
/*#__PURE__*/ jsx(Path, {
|
|
24
|
+
d: "M6.77266 3.76586C6.46766 3.76586 6.22266 4.01086 6.22266 4.31586V6.69586L7.92266 8.40086C8.02766 8.51086 8.17266 8.56086 8.31266 8.56086C8.45266 8.56086 8.59266 8.50586 8.70266 8.40086C8.91766 8.18586 8.91766 7.83586 8.70266 7.62086L7.32266 6.23586V4.30586C7.32266 4.00086 7.07766 3.75586 6.77266 3.75586V3.76586Z",
|
|
25
|
+
fill: fill
|
|
26
|
+
})
|
|
27
|
+
]
|
|
28
|
+
}),
|
|
29
|
+
/*#__PURE__*/ jsx(Defs, {
|
|
30
|
+
children: /*#__PURE__*/ jsx(ClipPath, {
|
|
31
|
+
id: "prefix__clip0_1726_1157",
|
|
32
|
+
children: /*#__PURE__*/ jsx(Rect, {
|
|
33
|
+
width: 12,
|
|
34
|
+
height: 12,
|
|
35
|
+
fill: "white",
|
|
36
|
+
transform: "translate(0.75 0.400391)"
|
|
37
|
+
})
|
|
38
|
+
})
|
|
39
|
+
})
|
|
40
|
+
]
|
|
41
|
+
});
|
|
42
|
+
};
|
|
43
|
+
TimerIcon_TimerIcon.displayName = 'TimerIcon|timer';
|
|
44
|
+
const TimerIcon = TimerIcon_TimerIcon;
|
|
45
|
+
export { TimerIcon as default };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type IconColor } from '../core';
|
|
2
|
+
import { type IconProps } from './types';
|
|
3
|
+
declare const TriangleUpIcon: {
|
|
4
|
+
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
export default TriangleUpIcon;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import external_react_native_svg_default, { Path } from "react-native-svg";
|
|
4
|
+
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
+
const TriangleUpIcon_TriangleUpIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
|
+
const { getColor } = useIconsContext();
|
|
7
|
+
const _color = isThemeColor(color) ? getColor(color) : color;
|
|
8
|
+
const fill = props.fill || _color;
|
|
9
|
+
return /*#__PURE__*/ jsx(external_react_native_svg_default, {
|
|
10
|
+
width: width,
|
|
11
|
+
height: height,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
...props,
|
|
15
|
+
children: /*#__PURE__*/ jsx(Path, {
|
|
16
|
+
d: "M20.4278 19.2006H18.91038H16.4518H13.53224H10.53586H7.88522H6.00288C5.69556 19.2006 5.44586 19.09572 5.25378 18.886C5.0617 18.67628 4.93046 18.40936 4.86002 18.08526C4.7896 17.76114 4.7864 17.40368 4.85042 17.01284C4.91444 16.622 5.0553 16.23592 5.27298 15.85462C5.74678 15.09202 6.24618 14.29126 6.77118 13.4524C7.29618 12.61352 7.834 11.76512 8.38462 10.90718L9.99806 8.33338C10.54868 7.47544 11.07368 6.6461 11.57308 5.84536C11.80356 5.48312 12.07888 5.2162 12.399 5.04462C12.71912 4.87302 13.04886 4.792 13.3882 4.80154C13.72752 4.81106 14.06046 4.9207 14.38698 5.1304C14.71352 5.34012 14.99842 5.63564 15.24172 6.01694C16.12528 7.38964 17.04724 8.87674 18.00762 10.47822C18.968 12.0797 19.9732 13.79558 21.0232 15.62584C21.2666 16.06434 21.433 16.49808 21.5226 16.92704C21.6122 17.356 21.6282 17.73732 21.5706 18.07096C21.513 18.4046 21.385 18.67628 21.1864 18.886C20.988 19.09572 20.735 19.2006 20.4278 19.2006Z",
|
|
17
|
+
fill: fill
|
|
18
|
+
})
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
TriangleUpIcon_TriangleUpIcon.displayName = 'TriangleUpIcon|triangle-up';
|
|
22
|
+
const TriangleUpIcon = TriangleUpIcon_TriangleUpIcon;
|
|
23
|
+
export { TriangleUpIcon as default };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type IconColor } from '../core';
|
|
2
|
+
import { type IconProps } from './types';
|
|
3
|
+
declare const TweetIcon: {
|
|
4
|
+
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
export default TweetIcon;
|
|
@@ -2,7 +2,7 @@ import { jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import "react";
|
|
3
3
|
import external_react_native_svg_default, { Path } from "react-native-svg";
|
|
4
4
|
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
-
const
|
|
5
|
+
const TweetIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
6
|
const { getColor } = useIconsContext();
|
|
7
7
|
const _color = isThemeColor(color) ? getColor(color) : color;
|
|
8
8
|
const fill = props.fill || _color;
|
|
@@ -18,6 +18,6 @@ const DailyPoetryIcon_DailyPoetryIcon = ({ size = 16, width = size, height = siz
|
|
|
18
18
|
})
|
|
19
19
|
});
|
|
20
20
|
};
|
|
21
|
-
|
|
22
|
-
const
|
|
23
|
-
export {
|
|
21
|
+
TweetIcon.displayName = 'TweetIcon|tweet';
|
|
22
|
+
const native_TweetIcon = TweetIcon;
|
|
23
|
+
export { native_TweetIcon as default };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type IconColor } from '../core';
|
|
2
|
+
import { type IconProps } from './types';
|
|
3
|
+
declare const WalletImportIcon: {
|
|
4
|
+
<T extends string = IconColor>({ size, width, height, color, ...props }: IconProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
export default WalletImportIcon;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import external_react_native_svg_default, { Path } from "react-native-svg";
|
|
4
|
+
import { isThemeColor, useIconsContext } from "../core/index.js";
|
|
5
|
+
const WalletImportIcon_WalletImportIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
|
|
6
|
+
const { getColor } = useIconsContext();
|
|
7
|
+
isThemeColor(color) && getColor(color);
|
|
8
|
+
props.fill;
|
|
9
|
+
props.stroke;
|
|
10
|
+
return /*#__PURE__*/ jsxs(external_react_native_svg_default, {
|
|
11
|
+
width: width,
|
|
12
|
+
height: height,
|
|
13
|
+
viewBox: "0 0 50 50",
|
|
14
|
+
fill: "none",
|
|
15
|
+
...props,
|
|
16
|
+
children: [
|
|
17
|
+
/*#__PURE__*/ jsx(Path, {
|
|
18
|
+
d: "M38.4756 26.1035C38.9348 26.1036 39.3755 26.2857 39.7002 26.6104C40.0248 26.9351 40.207 27.3758 40.207 27.835V33.3359C40.2047 34.7131 39.6564 36.034 38.6826 37.0078C37.7088 37.9815 36.3888 38.529 35.0117 38.5312H13.5273C12.1495 38.5312 10.8278 37.9841 9.85352 37.0098C8.87935 36.0355 8.33203 34.7137 8.33203 33.3359V27.835C8.33203 27.3758 8.51423 26.9351 8.83887 26.6104C9.16356 26.2857 9.6043 26.1036 10.0635 26.1035C10.5227 26.1035 10.9633 26.2857 11.2881 26.6104C11.6129 26.9351 11.7959 27.3757 11.7959 27.835V33.3359C11.7959 33.7951 11.9781 34.2358 12.3027 34.5605C12.6275 34.8853 13.068 35.0684 13.5273 35.0684H35.0117C35.471 35.0684 35.9116 34.8853 36.2363 34.5605C36.561 34.2358 36.7432 33.7951 36.7432 33.3359V27.835C36.7432 27.3757 36.9262 26.9351 37.251 26.6104C37.5757 26.2857 38.0163 26.1035 38.4756 26.1035ZM24.6865 10.832C25.1457 10.8321 25.5864 11.0142 25.9111 11.3389C26.2358 11.6636 26.4179 12.1043 26.418 12.5635V23.9727L28.2539 22.1318C28.4135 21.9666 28.6044 21.8349 28.8154 21.7441C29.0267 21.6534 29.2544 21.6055 29.4844 21.6035C29.7143 21.6015 29.9425 21.6454 30.1553 21.7324C30.3679 21.8195 30.5611 21.9479 30.7236 22.1104C30.8862 22.2729 31.0155 22.466 31.1025 22.6787C31.1896 22.8914 31.2334 23.1198 31.2314 23.3496C31.2294 23.5795 31.1816 23.8073 31.0908 24.0186C31.0001 24.2298 30.8675 24.4204 30.7021 24.5801L25.9102 29.374C25.747 29.5327 25.5555 29.6597 25.3457 29.748C25.1361 29.8351 24.9115 29.8799 24.6846 29.8799C24.4575 29.8799 24.2321 29.8352 24.0225 29.748L24.0244 29.7412C23.815 29.6532 23.6242 29.5262 23.4619 29.3672L18.2666 24.1719C17.9512 23.8453 17.7764 23.408 17.7803 22.9541C17.7842 22.5 17.967 22.0652 18.2881 21.7441C18.6091 21.4232 19.0432 21.2413 19.4971 21.2373C19.9509 21.2334 20.3883 21.4075 20.7148 21.7227L22.9541 23.9746V12.5635C22.9542 12.1043 23.1372 11.6636 23.4619 11.3389C23.7867 11.0143 24.2274 10.832 24.6865 10.832Z",
|
|
19
|
+
fill: "white"
|
|
20
|
+
}),
|
|
21
|
+
/*#__PURE__*/ jsx(Path, {
|
|
22
|
+
d: "M38.4756 26.1035C38.9348 26.1036 39.3755 26.2857 39.7002 26.6104C40.0248 26.9351 40.207 27.3758 40.207 27.835V33.3359C40.2047 34.7131 39.6564 36.034 38.6826 37.0078C37.7088 37.9815 36.3888 38.529 35.0117 38.5312H13.5273C12.1495 38.5312 10.8278 37.9841 9.85352 37.0098C8.87935 36.0355 8.33203 34.7137 8.33203 33.3359V27.835C8.33203 27.3758 8.51423 26.9351 8.83887 26.6104C9.16356 26.2857 9.6043 26.1036 10.0635 26.1035C10.5227 26.1035 10.9633 26.2857 11.2881 26.6104C11.6129 26.9351 11.7959 27.3757 11.7959 27.835V33.3359C11.7959 33.7951 11.9781 34.2358 12.3027 34.5605C12.6275 34.8853 13.068 35.0684 13.5273 35.0684H35.0117C35.471 35.0684 35.9116 34.8853 36.2363 34.5605C36.561 34.2358 36.7432 33.7951 36.7432 33.3359V27.835C36.7432 27.3757 36.9262 26.9351 37.251 26.6104C37.5757 26.2857 38.0163 26.1035 38.4756 26.1035ZM24.6865 10.832C25.1457 10.8321 25.5864 11.0142 25.9111 11.3389C26.2358 11.6636 26.4179 12.1043 26.418 12.5635V23.9727L28.2539 22.1318C28.4135 21.9666 28.6044 21.8349 28.8154 21.7441C29.0267 21.6534 29.2544 21.6055 29.4844 21.6035C29.7143 21.6015 29.9425 21.6454 30.1553 21.7324C30.3679 21.8195 30.5611 21.9479 30.7236 22.1104C30.8862 22.2729 31.0155 22.466 31.1025 22.6787C31.1896 22.8914 31.2334 23.1198 31.2314 23.3496C31.2294 23.5795 31.1816 23.8073 31.0908 24.0186C31.0001 24.2298 30.8675 24.4204 30.7021 24.5801L25.9102 29.374C25.747 29.5327 25.5555 29.6597 25.3457 29.748C25.1361 29.8351 24.9115 29.8799 24.6846 29.8799C24.4575 29.8799 24.2321 29.8352 24.0225 29.748L24.0244 29.7412C23.815 29.6532 23.6242 29.5262 23.4619 29.3672L18.2666 24.1719C17.9512 23.8453 17.7764 23.408 17.7803 22.9541C17.7842 22.5 17.967 22.0652 18.2881 21.7441C18.6091 21.4232 19.0432 21.2413 19.4971 21.2373C19.9509 21.2334 20.3883 21.4075 20.7148 21.7227L22.9541 23.9746V12.5635C22.9542 12.1043 23.1372 11.6636 23.4619 11.3389C23.7867 11.0143 24.2274 10.832 24.6865 10.832Z",
|
|
23
|
+
stroke: "black"
|
|
24
|
+
})
|
|
25
|
+
]
|
|
26
|
+
});
|
|
27
|
+
};
|
|
28
|
+
WalletImportIcon_WalletImportIcon.displayName = 'WalletImportIcon|wallet-import';
|
|
29
|
+
const WalletImportIcon = WalletImportIcon_WalletImportIcon;
|
|
30
|
+
export { WalletImportIcon as default };
|