@particle-network/icons 0.0.7 → 0.0.9

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.
Files changed (49) hide show
  1. package/dist/native/{DailyPoetryIcon.d.ts → CircleFilledIcon.d.ts} +2 -2
  2. package/dist/native/CircleFilledIcon.js +25 -0
  3. package/dist/native/{Wallet2Icon.d.ts → EyeIcon.d.ts} +2 -2
  4. package/dist/native/EyeIcon.js +23 -0
  5. package/dist/{web/Wallet2Icon.d.ts → native/FolderIcon.d.ts} +2 -2
  6. package/dist/native/{Wallet2Icon.js → FolderIcon.js} +4 -4
  7. package/dist/{web/DailyPoetryIcon.d.ts → native/LayoutBottomIcon.d.ts} +2 -2
  8. package/dist/native/{LayoutDownIcon.js → LayoutBottomIcon.js} +4 -4
  9. package/dist/{web/LayoutDownIcon.d.ts → native/PlusIcon.d.ts} +2 -2
  10. package/dist/native/PlusIcon.js +23 -0
  11. package/dist/native/{LayoutDownIcon.d.ts → RadioOffIcon.d.ts} +2 -2
  12. package/dist/native/RadioOffIcon.js +24 -0
  13. package/dist/native/RadioOnIcon.d.ts +7 -0
  14. package/dist/native/RadioOnIcon.js +46 -0
  15. package/dist/native/SortAscIcon.d.ts +7 -0
  16. package/dist/native/SortAscIcon.js +23 -0
  17. package/dist/native/SortDescIcon.d.ts +7 -0
  18. package/dist/native/SortDescIcon.js +23 -0
  19. package/dist/native/TriangleUpIcon.d.ts +7 -0
  20. package/dist/native/TriangleUpIcon.js +23 -0
  21. package/dist/native/TweetIcon.d.ts +7 -0
  22. package/dist/native/{DailyPoetryIcon.js → TweetIcon.js} +4 -4
  23. package/dist/native/index.d.ts +11 -3
  24. package/dist/native/index.js +12 -4
  25. package/dist/web/CircleFilledIcon.d.ts +7 -0
  26. package/dist/web/CircleFilledIcon.js +24 -0
  27. package/dist/web/EyeIcon.d.ts +7 -0
  28. package/dist/web/EyeIcon.js +22 -0
  29. package/dist/web/FolderIcon.d.ts +7 -0
  30. package/dist/web/{Wallet2Icon.js → FolderIcon.js} +4 -4
  31. package/dist/web/LayoutBottomIcon.d.ts +7 -0
  32. package/dist/web/{LayoutDownIcon.js → LayoutBottomIcon.js} +4 -4
  33. package/dist/web/PlusIcon.d.ts +7 -0
  34. package/dist/web/PlusIcon.js +22 -0
  35. package/dist/web/RadioOffIcon.d.ts +7 -0
  36. package/dist/web/RadioOffIcon.js +23 -0
  37. package/dist/web/RadioOnIcon.d.ts +7 -0
  38. package/dist/web/RadioOnIcon.js +45 -0
  39. package/dist/web/SortAscIcon.d.ts +7 -0
  40. package/dist/web/SortAscIcon.js +22 -0
  41. package/dist/web/SortDescIcon.d.ts +7 -0
  42. package/dist/web/SortDescIcon.js +22 -0
  43. package/dist/web/TriangleUpIcon.d.ts +7 -0
  44. package/dist/web/TriangleUpIcon.js +22 -0
  45. package/dist/web/TweetIcon.d.ts +7 -0
  46. package/dist/web/{DailyPoetryIcon.js → TweetIcon.js} +4 -4
  47. package/dist/web/index.d.ts +11 -3
  48. package/dist/web/index.js +12 -4
  49. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  import { type IconColor } from '../core';
2
2
  import { type IconProps } from './types';
3
- declare const DailyPoetryIcon: {
3
+ declare const CircleFilledIcon: {
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 DailyPoetryIcon;
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 Wallet2Icon: {
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 Wallet2Icon;
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 Wallet2Icon: {
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 Wallet2Icon;
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 Wallet2Icon_Wallet2Icon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
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
- Wallet2Icon_Wallet2Icon.displayName = 'Wallet2Icon|wallet-2';
22
- const Wallet2Icon = Wallet2Icon_Wallet2Icon;
23
- export { Wallet2Icon as default };
21
+ FolderIcon_FolderIcon.displayName = 'FolderIcon|folder';
22
+ const FolderIcon = FolderIcon_FolderIcon;
23
+ export { FolderIcon as default };
@@ -1,7 +1,7 @@
1
1
  import { type IconColor } from '../core';
2
2
  import { type IconProps } from './types';
3
- declare const DailyPoetryIcon: {
3
+ declare const LayoutBottomIcon: {
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 DailyPoetryIcon;
7
+ export default LayoutBottomIcon;
@@ -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 LayoutDownIcon_LayoutDownIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
5
+ const LayoutBottomIcon_LayoutBottomIcon = ({ 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 LayoutDownIcon_LayoutDownIcon = ({ size = 16, width = size, height = size,
18
18
  })
19
19
  });
20
20
  };
21
- LayoutDownIcon_LayoutDownIcon.displayName = 'LayoutDownIcon|layout-down';
22
- const LayoutDownIcon = LayoutDownIcon_LayoutDownIcon;
23
- export { LayoutDownIcon as default };
21
+ LayoutBottomIcon_LayoutBottomIcon.displayName = 'LayoutBottomIcon|layout-bottom';
22
+ const LayoutBottomIcon = LayoutBottomIcon_LayoutBottomIcon;
23
+ export { LayoutBottomIcon as default };
@@ -1,7 +1,7 @@
1
1
  import { type IconColor } from '../core';
2
2
  import { type IconProps } from './types';
3
- declare const LayoutDownIcon: {
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 LayoutDownIcon;
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 };
@@ -1,7 +1,7 @@
1
1
  import { type IconColor } from '../core';
2
2
  import { type IconProps } from './types';
3
- declare const LayoutDownIcon: {
3
+ declare const RadioOffIcon: {
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 LayoutDownIcon;
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 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 DailyPoetryIcon_DailyPoetryIcon = ({ size = 16, width = size, height = size, color = 'currentColor', ...props })=>{
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
- DailyPoetryIcon_DailyPoetryIcon.displayName = 'DailyPoetryIcon|daily-poetry';
22
- const DailyPoetryIcon = DailyPoetryIcon_DailyPoetryIcon;
23
- export { DailyPoetryIcon as default };
21
+ TweetIcon.displayName = 'TweetIcon|tweet';
22
+ const native_TweetIcon = TweetIcon;
23
+ export { native_TweetIcon as default };
@@ -54,6 +54,7 @@ export { default as CircleCheckFadedIcon } from './CircleCheckFadedIcon';
54
54
  export { default as CircleCheckFilledIcon } from './CircleCheckFilledIcon';
55
55
  export { default as CircleCloseFadedIcon } from './CircleCloseFadedIcon';
56
56
  export { default as CircleCloseFilledIcon } from './CircleCloseFilledIcon';
57
+ export { default as CircleFilledIcon } from './CircleFilledIcon';
57
58
  export { default as CircleFlameIcon } from './CircleFlameIcon';
58
59
  export { default as CircleMinusFadedIcon } from './CircleMinusFadedIcon';
59
60
  export { default as CircleMinusIcon } from './CircleMinusIcon';
@@ -82,7 +83,6 @@ export { default as CopyXIcon } from './CopyXIcon';
82
83
  export { default as CopyIcon } from './CopyIcon';
83
84
  export { default as CrownIcon } from './CrownIcon';
84
85
  export { default as CurrencyExchangeIcon } from './CurrencyExchangeIcon';
85
- export { default as DailyPoetryIcon } from './DailyPoetryIcon';
86
86
  export { default as DiamondIcon } from './DiamondIcon';
87
87
  export { default as DiscordIcon } from './DiscordIcon';
88
88
  export { default as DocumentTermsIcon } from './DocumentTermsIcon';
@@ -99,6 +99,7 @@ export { default as EmptyIcon } from './EmptyIcon';
99
99
  export { default as ExpandIcon } from './ExpandIcon';
100
100
  export { default as ExternalLinkIcon } from './ExternalLinkIcon';
101
101
  export { default as EyeOffIcon } from './EyeOffIcon';
102
+ export { default as EyeIcon } from './EyeIcon';
102
103
  export { default as FaceSadIcon } from './FaceSadIcon';
103
104
  export { default as FaceIcon } from './FaceIcon';
104
105
  export { default as FaqIcon } from './FaqIcon';
@@ -109,6 +110,7 @@ export { default as FlagIcon } from './FlagIcon';
109
110
  export { default as FlameFilledIcon } from './FlameFilledIcon';
110
111
  export { default as FlameIcon } from './FlameIcon';
111
112
  export { default as FlashIcon } from './FlashIcon';
113
+ export { default as FolderIcon } from './FolderIcon';
112
114
  export { default as GasFeeIcon } from './GasFeeIcon';
113
115
  export { default as GhostIcon } from './GhostIcon';
114
116
  export { default as GiftIcon } from './GiftIcon';
@@ -126,7 +128,7 @@ export { default as JackpotIcon } from './JackpotIcon';
126
128
  export { default as JoinCommunityIcon } from './JoinCommunityIcon';
127
129
  export { default as LanguagesIcon } from './LanguagesIcon';
128
130
  export { default as LayersIcon } from './LayersIcon';
129
- export { default as LayoutDownIcon } from './LayoutDownIcon';
131
+ export { default as LayoutBottomIcon } from './LayoutBottomIcon';
130
132
  export { default as LayoutFloatIcon } from './LayoutFloatIcon';
131
133
  export { default as LayoutLeftIcon } from './LayoutLeftIcon';
132
134
  export { default as LayoutRightIcon } from './LayoutRightIcon';
@@ -174,6 +176,7 @@ export { default as PinIcon } from './PinIcon';
174
176
  export { default as PlayCircleIcon } from './PlayCircleIcon';
175
177
  export { default as PlayLeftIcon } from './PlayLeftIcon';
176
178
  export { default as PlayIcon } from './PlayIcon';
179
+ export { default as PlusIcon } from './PlusIcon';
177
180
  export { default as PriorityFeeIcon } from './PriorityFeeIcon';
178
181
  export { default as PrivacyPolicyIcon } from './PrivacyPolicyIcon';
179
182
  export { default as ProcessingIcon } from './ProcessingIcon';
@@ -181,6 +184,8 @@ export { default as PumpfunIcon } from './PumpfunIcon';
181
184
  export { default as QrcodeIcon } from './QrcodeIcon';
182
185
  export { default as QuestionIcon } from './QuestionIcon';
183
186
  export { default as RadarIcon } from './RadarIcon';
187
+ export { default as RadioOffIcon } from './RadioOffIcon';
188
+ export { default as RadioOnIcon } from './RadioOnIcon';
184
189
  export { default as ReceiveIcon } from './ReceiveIcon';
185
190
  export { default as RecordBuyIcon } from './RecordBuyIcon';
186
191
  export { default as RecordSellIcon } from './RecordSellIcon';
@@ -212,6 +217,8 @@ export { default as SlidersHorizontalIcon } from './SlidersHorizontalIcon';
212
217
  export { default as SlidersVerticalIcon } from './SlidersVerticalIcon';
213
218
  export { default as SlippageIcon } from './SlippageIcon';
214
219
  export { default as SnowflakeIcon } from './SnowflakeIcon';
220
+ export { default as SortAscIcon } from './SortAscIcon';
221
+ export { default as SortDescIcon } from './SortDescIcon';
215
222
  export { default as SortDown1Icon } from './SortDown1Icon';
216
223
  export { default as SortDownIcon } from './SortDownIcon';
217
224
  export { default as SortUp1Icon } from './SortUp1Icon';
@@ -239,9 +246,11 @@ export { default as TreeIcon } from './TreeIcon';
239
246
  export { default as TrenchIcon } from './TrenchIcon';
240
247
  export { default as TriangleAlertIcon } from './TriangleAlertIcon';
241
248
  export { default as TriangleDownIcon } from './TriangleDownIcon';
249
+ export { default as TriangleUpIcon } from './TriangleUpIcon';
242
250
  export { default as TrophyIcon } from './TrophyIcon';
243
251
  export { default as TruthSocialIcon } from './TruthSocialIcon';
244
252
  export { default as TweetQuoteIcon } from './TweetQuoteIcon';
253
+ export { default as TweetIcon } from './TweetIcon';
245
254
  export { default as TwinklingStarsIcon } from './TwinklingStarsIcon';
246
255
  export { default as TwitchAppIcon } from './TwitchAppIcon';
247
256
  export { default as TwitterSearchIcon } from './TwitterSearchIcon';
@@ -256,7 +265,6 @@ export { default as UserTieIcon } from './UserTieIcon';
256
265
  export { default as UserIcon } from './UserIcon';
257
266
  export { default as UsersIcon } from './UsersIcon';
258
267
  export { default as VolumeIcon } from './VolumeIcon';
259
- export { default as Wallet2Icon } from './Wallet2Icon';
260
268
  export { default as WalletBackupIcon } from './WalletBackupIcon';
261
269
  export { default as WalletCreateIcon } from './WalletCreateIcon';
262
270
  export { default as WalletPasswordIcon } from './WalletPasswordIcon';