@yoroll/react-icon 0.0.1 → 0.0.3

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 (71) hide show
  1. package/dist/index.cjs +1372 -578
  2. package/dist/index.iife.js +1338 -577
  3. package/dist/index.iife.min.js +6 -6
  4. package/dist/index.js +1433 -606
  5. package/dist/index.min.cjs +2 -2
  6. package/dist/index.min.js +2 -2
  7. package/dist/types/components/Add.d.ts +2 -1
  8. package/dist/types/components/Agreements.d.ts +4 -0
  9. package/dist/types/components/AngleDown.d.ts +2 -1
  10. package/dist/types/components/Artboard.d.ts +4 -0
  11. package/dist/types/components/Assets.d.ts +2 -1
  12. package/dist/types/components/AssetsFilled.d.ts +2 -1
  13. package/dist/types/components/Backward.d.ts +2 -1
  14. package/dist/types/components/BatchShots.d.ts +4 -0
  15. package/dist/types/components/CheckedFilled.d.ts +4 -0
  16. package/dist/types/components/Close.d.ts +2 -1
  17. package/dist/types/components/CreditFilled.d.ts +2 -1
  18. package/dist/types/components/Cursor.d.ts +4 -0
  19. package/dist/types/components/Delete.d.ts +2 -1
  20. package/dist/types/components/Download.d.ts +2 -1
  21. package/dist/types/components/Gamelanguage.d.ts +4 -0
  22. package/dist/types/components/GenerateFilled.d.ts +2 -1
  23. package/dist/types/components/Genre.d.ts +4 -0
  24. package/dist/types/components/GenreAuto.d.ts +4 -0
  25. package/dist/types/components/GenreComedy.d.ts +4 -0
  26. package/dist/types/components/GenreFantasy.d.ts +4 -0
  27. package/dist/types/components/GenreHorror.d.ts +4 -0
  28. package/dist/types/components/GenreRomance.d.ts +4 -0
  29. package/dist/types/components/GenreScifi.d.ts +4 -0
  30. package/dist/types/components/GenreSuspense.d.ts +4 -0
  31. package/dist/types/components/GoogleLogoFilled.d.ts +4 -0
  32. package/dist/types/components/Help.d.ts +4 -0
  33. package/dist/types/components/Homepage.d.ts +2 -1
  34. package/dist/types/components/HomepageFilled.d.ts +2 -1
  35. package/dist/types/components/ImageGeneration.d.ts +2 -1
  36. package/dist/types/components/Login.d.ts +4 -0
  37. package/dist/types/components/Logout.d.ts +4 -0
  38. package/dist/types/components/ModelDeepmindFilled.d.ts +4 -0
  39. package/dist/types/components/ModelGeminiFilled.d.ts +4 -0
  40. package/dist/types/components/ModelGeminiFilled1.d.ts +4 -0
  41. package/dist/types/components/ModelNanobananaLogoNomoFilled.d.ts +4 -0
  42. package/dist/types/components/ModelSoraFilled.d.ts +4 -0
  43. package/dist/types/components/Models.d.ts +2 -1
  44. package/dist/types/components/More.d.ts +2 -1
  45. package/dist/types/components/Moresettings.d.ts +4 -0
  46. package/dist/types/components/Pencil.d.ts +4 -0
  47. package/dist/types/components/PlanFilled.d.ts +2 -1
  48. package/dist/types/components/Ratio.d.ts +4 -0
  49. package/dist/types/components/Ratio11.d.ts +2 -1
  50. package/dist/types/components/Ratio169.d.ts +2 -1
  51. package/dist/types/components/Ratio916.d.ts +2 -1
  52. package/dist/types/components/ReEdit.d.ts +2 -1
  53. package/dist/types/components/Regenerate.d.ts +2 -1
  54. package/dist/types/components/SocialDiscord.d.ts +2 -1
  55. package/dist/types/components/SocialX.d.ts +2 -1
  56. package/dist/types/components/SoundOff.d.ts +2 -1
  57. package/dist/types/components/SoundOn.d.ts +2 -1
  58. package/dist/types/components/Style.d.ts +4 -0
  59. package/dist/types/components/StyleAutoFilled.d.ts +4 -0
  60. package/dist/types/components/TextLogo.d.ts +4 -0
  61. package/dist/types/components/Tools.d.ts +2 -1
  62. package/dist/types/components/ToolsFilled.d.ts +2 -1
  63. package/dist/types/components/Uploadfiles.d.ts +4 -0
  64. package/dist/types/components/Uploadimages.d.ts +4 -0
  65. package/dist/types/components/Userfeedback.d.ts +4 -0
  66. package/dist/types/components/VideoGeneration.d.ts +2 -1
  67. package/dist/types/components/VideoLength.d.ts +2 -1
  68. package/dist/types/components/Visualstyles.d.ts +4 -0
  69. package/dist/types/components/index.d.ts +33 -0
  70. package/dist/types/index.d.ts +2 -0
  71. package/package.json +5 -5
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconGenerateFilled: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconGenerateFilled: React.FC<IconProps>;
3
4
  export default IconGenerateFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconGenre: React.FC<IconProps>;
4
+ export default IconGenre;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconGenreAuto: React.FC<IconProps>;
4
+ export default IconGenreAuto;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconGenreComedy: React.FC<IconProps>;
4
+ export default IconGenreComedy;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconGenreFantasy: React.FC<IconProps>;
4
+ export default IconGenreFantasy;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconGenreHorror: React.FC<IconProps>;
4
+ export default IconGenreHorror;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconGenreRomance: React.FC<IconProps>;
4
+ export default IconGenreRomance;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconGenreScifi: React.FC<IconProps>;
4
+ export default IconGenreScifi;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconGenreSuspense: React.FC<IconProps>;
4
+ export default IconGenreSuspense;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconGoogleLogoFilled: React.FC<IconProps>;
4
+ export default IconGoogleLogoFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconHelp: React.FC<IconProps>;
4
+ export default IconHelp;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconHomepage: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconHomepage: React.FC<IconProps>;
3
4
  export default IconHomepage;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconHomepageFilled: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconHomepageFilled: React.FC<IconProps>;
3
4
  export default IconHomepageFilled;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconImageGeneration: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconImageGeneration: React.FC<IconProps>;
3
4
  export default IconImageGeneration;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconLogin: React.FC<IconProps>;
4
+ export default IconLogin;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconLogout: React.FC<IconProps>;
4
+ export default IconLogout;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconModelDeepmindFilled: React.FC<IconProps>;
4
+ export default IconModelDeepmindFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconModelGeminiFilled: React.FC<IconProps>;
4
+ export default IconModelGeminiFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconModelGeminiFilled1: React.FC<IconProps>;
4
+ export default IconModelGeminiFilled1;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconModelNanobananaLogoNomoFilled: React.FC<IconProps>;
4
+ export default IconModelNanobananaLogoNomoFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconModelSoraFilled: React.FC<IconProps>;
4
+ export default IconModelSoraFilled;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconModels: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconModels: React.FC<IconProps>;
3
4
  export default IconModels;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconMore: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconMore: React.FC<IconProps>;
3
4
  export default IconMore;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconMoresettings: React.FC<IconProps>;
4
+ export default IconMoresettings;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconPencil: React.FC<IconProps>;
4
+ export default IconPencil;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconPlanFilled: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconPlanFilled: React.FC<IconProps>;
3
4
  export default IconPlanFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconRatio: React.FC<IconProps>;
4
+ export default IconRatio;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconRatio11: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconRatio11: React.FC<IconProps>;
3
4
  export default IconRatio11;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconRatio169: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconRatio169: React.FC<IconProps>;
3
4
  export default IconRatio169;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconRatio916: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconRatio916: React.FC<IconProps>;
3
4
  export default IconRatio916;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconReEdit: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconReEdit: React.FC<IconProps>;
3
4
  export default IconReEdit;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconRegenerate: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconRegenerate: React.FC<IconProps>;
3
4
  export default IconRegenerate;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconSocialDiscord: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconSocialDiscord: React.FC<IconProps>;
3
4
  export default IconSocialDiscord;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconSocialX: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconSocialX: React.FC<IconProps>;
3
4
  export default IconSocialX;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconSoundOff: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconSoundOff: React.FC<IconProps>;
3
4
  export default IconSoundOff;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconSoundOn: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconSoundOn: React.FC<IconProps>;
3
4
  export default IconSoundOn;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconStyle: React.FC<IconProps>;
4
+ export default IconStyle;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconStyleAutoFilled: React.FC<IconProps>;
4
+ export default IconStyleAutoFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconTextLogo: React.FC<IconProps>;
4
+ export default IconTextLogo;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconTools: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconTools: React.FC<IconProps>;
3
4
  export default IconTools;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconToolsFilled: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconToolsFilled: React.FC<IconProps>;
3
4
  export default IconToolsFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconUploadfiles: React.FC<IconProps>;
4
+ export default IconUploadfiles;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconUploadimages: React.FC<IconProps>;
4
+ export default IconUploadimages;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconUserfeedback: React.FC<IconProps>;
4
+ export default IconUserfeedback;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconVideoGeneration: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconVideoGeneration: React.FC<IconProps>;
3
4
  export default IconVideoGeneration;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IconProps } from '.';
2
- declare const IconVideoLength: ({ size, width, height, color, className, fill, stroke }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const IconVideoLength: React.FC<IconProps>;
3
4
  export default IconVideoLength;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconVisualstyles: React.FC<IconProps>;
4
+ export default IconVisualstyles;
@@ -1,32 +1,65 @@
1
1
  export { default as IconAdd } from './Add';
2
+ export { default as IconAgreements } from './Agreements';
2
3
  export { default as IconAngleDown } from './AngleDown';
4
+ export { default as IconArtboard } from './Artboard';
3
5
  export { default as IconAssetsFilled } from './AssetsFilled';
4
6
  export { default as IconAssets } from './Assets';
5
7
  export { default as IconBackward } from './Backward';
8
+ export { default as IconBatchShots } from './BatchShots';
9
+ export { default as IconCheckedFilled } from './CheckedFilled';
6
10
  export { default as IconClose } from './Close';
7
11
  export { default as IconCreditFilled } from './CreditFilled';
12
+ export { default as IconCursor } from './Cursor';
8
13
  export { default as IconDelete } from './Delete';
9
14
  export { default as IconDownload } from './Download';
15
+ export { default as IconGamelanguage } from './Gamelanguage';
10
16
  export { default as IconGenerateFilled } from './GenerateFilled';
17
+ export { default as IconGenreAuto } from './GenreAuto';
18
+ export { default as IconGenreComedy } from './GenreComedy';
19
+ export { default as IconGenreFantasy } from './GenreFantasy';
20
+ export { default as IconGenreHorror } from './GenreHorror';
21
+ export { default as IconGenreRomance } from './GenreRomance';
22
+ export { default as IconGenreScifi } from './GenreScifi';
23
+ export { default as IconGenreSuspense } from './GenreSuspense';
24
+ export { default as IconGenre } from './Genre';
25
+ export { default as IconGoogleLogoFilled } from './GoogleLogoFilled';
26
+ export { default as IconHelp } from './Help';
11
27
  export { default as IconHomepageFilled } from './HomepageFilled';
12
28
  export { default as IconHomepage } from './Homepage';
13
29
  export { default as IconImageGeneration } from './ImageGeneration';
30
+ export { default as IconLogin } from './Login';
31
+ export { default as IconLogout } from './Logout';
32
+ export { default as IconModelGeminiFilled1 } from './ModelGeminiFilled1';
33
+ export { default as IconModelGeminiFilled } from './ModelGeminiFilled';
34
+ export { default as IconModelDeepmindFilled } from './ModelDeepmindFilled';
35
+ export { default as IconModelSoraFilled } from './ModelSoraFilled';
36
+ export { default as IconModelNanobananaLogoNomoFilled } from './ModelNanobananaLogoNomoFilled';
14
37
  export { default as IconModels } from './Models';
15
38
  export { default as IconMore } from './More';
39
+ export { default as IconMoresettings } from './Moresettings';
40
+ export { default as IconPencil } from './Pencil';
16
41
  export { default as IconPlanFilled } from './PlanFilled';
17
42
  export { default as IconRatio169 } from './Ratio169';
18
43
  export { default as IconRatio11 } from './Ratio11';
19
44
  export { default as IconRatio916 } from './Ratio916';
45
+ export { default as IconRatio } from './Ratio';
20
46
  export { default as IconReEdit } from './ReEdit';
21
47
  export { default as IconRegenerate } from './Regenerate';
22
48
  export { default as IconSocialX } from './SocialX';
23
49
  export { default as IconSocialDiscord } from './SocialDiscord';
24
50
  export { default as IconSoundOff } from './SoundOff';
25
51
  export { default as IconSoundOn } from './SoundOn';
52
+ export { default as IconStyleAutoFilled } from './StyleAutoFilled';
53
+ export { default as IconStyle } from './Style';
54
+ export { default as IconTextLogo } from './TextLogo';
26
55
  export { default as IconToolsFilled } from './ToolsFilled';
27
56
  export { default as IconTools } from './Tools';
57
+ export { default as IconUploadfiles } from './Uploadfiles';
58
+ export { default as IconUploadimages } from './Uploadimages';
59
+ export { default as IconUserfeedback } from './Userfeedback';
28
60
  export { default as IconVideoGeneration } from './VideoGeneration';
29
61
  export { default as IconVideoLength } from './VideoLength';
62
+ export { default as IconVisualstyles } from './Visualstyles';
30
63
  export type IconProps = {
31
64
  size?: number;
32
65
  width?: number;
@@ -1 +1,3 @@
1
+ import { IconProps } from './components';
1
2
  export * from './components';
3
+ export type LGIconType = React.ComponentType<IconProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yoroll/react-icon",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -15,19 +15,19 @@
15
15
  "icon",
16
16
  "react"
17
17
  ],
18
- "author": "ChenWei",
18
+ "author": "LinearGameAI",
19
19
  "license": "ISC",
20
20
  "publishConfig": {
21
21
  "access": "public"
22
22
  },
23
- "homepage": "https://github.com/chenwei0922/linear-game-icons.git#README",
23
+ "homepage": "https://github.com/LinearGameAI/linear-game-icons.git#README",
24
24
  "repository": {
25
25
  "type": "git",
26
- "url": "https://github.com/chenwei0922/linear-game-icons.git",
26
+ "url": "https://github.com/LinearGameAI/linear-game-icons.git",
27
27
  "directory": "packages/react"
28
28
  },
29
29
  "bugs": {
30
- "url": "https://github.com/chenwei0922/linear-game-icons/issues"
30
+ "url": "https://github.com/LinearGameAI/linear-game-icons/issues"
31
31
  },
32
32
  "files": [
33
33
  "dist"