@ideeza/icons 1.0.9 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist/icons/common/BellIcon.d.ts +8 -0
  2. package/dist/icons/common/BoxAxisIcon.d.ts +8 -0
  3. package/dist/icons/common/KeyboardArrowDownSmallIcon.d.ts +8 -0
  4. package/dist/icons/common/MenuDotIcon.d.ts +8 -0
  5. package/dist/icons/common/MenuLineIcon.d.ts +8 -0
  6. package/dist/icons/common/QuestionAltIcon.d.ts +8 -0
  7. package/dist/icons/common/WalletIcon.d.ts +8 -0
  8. package/dist/icons/common/index.d.ts +7 -0
  9. package/dist/icons/general/MobileIcon.d.ts +8 -0
  10. package/dist/icons/general/PcIcon.d.ts +8 -0
  11. package/dist/icons/general/index.d.ts +2 -0
  12. package/dist/icons/v2/general/ArrowLeftThinIcon.d.ts +8 -0
  13. package/dist/icons/v2/general/BlogIcon.d.ts +8 -0
  14. package/dist/icons/v2/general/DashboardMenuIcon.d.ts +8 -0
  15. package/dist/icons/v2/general/FolderAltIcon.d.ts +8 -0
  16. package/dist/icons/v2/general/KeyboardCurveRightArrowIcon.d.ts +8 -0
  17. package/dist/icons/v2/general/LogoutCurveIcon.d.ts +8 -0
  18. package/dist/icons/v2/general/MessageIcon.d.ts +8 -0
  19. package/dist/icons/v2/general/MoonHalfIcon.d.ts +8 -0
  20. package/dist/icons/v2/general/NewsFeedIcon.d.ts +8 -0
  21. package/dist/icons/v2/general/NoteIcon.d.ts +8 -0
  22. package/dist/icons/v2/general/PartsIcon.d.ts +8 -0
  23. package/dist/icons/v2/general/ReferAltIcon.d.ts +8 -0
  24. package/dist/icons/v2/general/SettingOutlineIcon.d.ts +8 -0
  25. package/dist/icons/v2/general/TagIcon.d.ts +8 -0
  26. package/dist/icons/v2/general/UserCaptureAltIcon.d.ts +8 -0
  27. package/dist/icons/v2/general/UserSmallIcon.d.ts +8 -0
  28. package/dist/icons/v2/general/index.d.ts +16 -0
  29. package/dist/index.cjs +156 -2
  30. package/dist/index.cjs.map +1 -1
  31. package/dist/index.d.ts +1 -0
  32. package/dist/index.esm.js +131 -2
  33. package/dist/index.esm.js.map +1 -1
  34. package/package.json +1 -1
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgBellIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgBellIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgBoxAxisIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgBoxAxisIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgKeyboardArrowDownSmallIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgKeyboardArrowDownSmallIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgMenuDotIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgMenuDotIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgMenuLineIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgMenuLineIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgQuestionAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgQuestionAltIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgWalletIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgWalletIcon;
@@ -1,7 +1,9 @@
1
1
  export { default as AddPhotoAltIcon } from "./AddPhotoAltIcon";
2
2
  export { default as BackwordIcon } from "./BackwordIcon";
3
+ export { default as BellIcon } from "./BellIcon";
3
4
  export { default as BoltIcon } from "./BoltIcon";
4
5
  export { default as BoxIcon } from "./BoxIcon";
6
+ export { default as BoxAxisIcon } from "./BoxAxisIcon";
5
7
  export { default as BrushIcon } from "./BrushIcon";
6
8
  export { default as ChatBubbleIcon } from "./ChatBubbleIcon";
7
9
  export { default as CircleFillShapeIcon } from "./CircleFillShapeIcon";
@@ -20,6 +22,9 @@ export { default as KeyboardArrowLeftAltIcon } from "./KeyboradArrowLeftAltIcon"
20
22
  export { default as KeyboardArrowRightAltIcon } from "./KeyboardArrowRightAltIcon";
21
23
  export { default as KeyboardArrowUpAltIcon } from "./KeyboardArrowUpAltIcon";
22
24
  export { default as KeyboardUpDownIcon } from "./KeyboardUpDownIcon";
25
+ export { default as KeyboardArrowDownSmallIcon } from "./KeyboardArrowDownSmallIcon";
26
+ export { default as MenuDotIcon } from "./MenuDotIcon";
27
+ export { default as MenuLineIcon } from "./MenuLineIcon";
23
28
  export { default as MicAltIcon } from "./MicAltIcon";
24
29
  export { default as MicIcon } from "./MicIcon";
25
30
  export { default as MovieIcon } from "./MovieIcon";
@@ -32,6 +37,7 @@ export { default as PauseIcon } from "./PauseIcon";
32
37
  export { default as PauseOutlineIcon } from "./PauseOutlineIcon";
33
38
  export { default as PlayArrowIcon } from "./PlayArrowIcon";
34
39
  export { default as PlusIcon } from "./PlusIcon";
40
+ export { default as QuestionAltIcon } from "./QuestionAltIcon";
35
41
  export { default as QuestionMarkIcon } from "./QuestionMarkIcon";
36
42
  export { default as QuickStartIcon } from "./QuickStartIcon";
37
43
  export { default as QuizIcon } from "./QuizIcon";
@@ -46,6 +52,7 @@ export { default as TacticIcon } from "./TacticIcon";
46
52
  export { default as TryAgainIcon } from "./TryAgainIcon";
47
53
  export { default as UserDoubleIcon } from "./UserDoubleIcon";
48
54
  export { default as VerifiedOutlineIcon } from "./VerifiedOutlineIcon";
55
+ export { default as WalletIcon } from "./WalletIcon";
49
56
  export { default as WarningFillIcon } from "./WarningFillIcon";
50
57
  export { default as WarningIcon } from "./WarningIcon";
51
58
  export { default as ZoomInIcon } from "./ZoomInIcon";
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgMobileIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgMobileIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgPcIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgPcIcon;
@@ -47,11 +47,13 @@ export { default as ListBulletedIcon } from "./ListBulletedIcon";
47
47
  export { default as LocationOutlineIcon } from "./LocationOutlineIcon";
48
48
  export { default as LogoutAltIcon } from "./LogoutAltIcon";
49
49
  export { default as LogoutIcon } from "./LogoutIcon";
50
+ export { default as MobileIcon } from "./MobileIcon";
50
51
  export { default as NoteAltIcon } from "./NoteAltIcon";
51
52
  export { default as NotificationBellAltIcon } from "./NotificationBellAltIcon";
52
53
  export { default as NotificationBellAltSlashIcon } from "./NotificationBellAltSlashIcon";
53
54
  export { default as NotificationOffIcon } from "./NotificationOffIcon";
54
55
  export { default as PaypalIcon } from "./PaypalIcon";
56
+ export { default as PcIcon } from "./PcIcon";
55
57
  export { default as PersonBookIcon } from "./PersonBookIcon";
56
58
  export { default as PersonRemoveIcon } from "./PersonRemoveIcon";
57
59
  export { default as PointRightOutlineIcon } from "./PointRightOutlineIcon";
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgArrowLeftThinIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgArrowLeftThinIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgBlogIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgBlogIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgDashboardMenuIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgDashboardMenuIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgFolderIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgFolderIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgKeyboardCurveRightArrowIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgKeyboardCurveRightArrowIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgLogoutAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgLogoutAltIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgMessageIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgMessageIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgMoonHalfIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgMoonHalfIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgNewsFeedIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgNewsFeedIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgNoteIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgNoteIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgPartsIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgPartsIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgReferIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgReferIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgSettingOutlineIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgSettingOutlineIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgTagIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgTagIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgUserCaptureIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgUserCaptureIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgUserOutlineIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgUserOutlineIcon;
@@ -0,0 +1,16 @@
1
+ export { default as ArrowLeftThinIcon } from "./ArrowLeftThinIcon";
2
+ export { default as BlogIcon } from "./BlogIcon";
3
+ export { default as DashboardMenuIcon } from "./DashboardMenuIcon";
4
+ export { default as FolderAltIcon } from "./FolderAltIcon";
5
+ export { default as KeyboardCurveRightArrowIcon } from "./KeyboardCurveRightArrowIcon";
6
+ export { default as LogoutCurveIcon } from "./LogoutCurveIcon";
7
+ export { default as MessageIcon } from "./MessageIcon";
8
+ export { default as MoonHalfIcon } from "./MoonHalfIcon";
9
+ export { default as NewsFeedIcon } from "./NewsFeedIcon";
10
+ export { default as NoteIcon } from "./NoteIcon";
11
+ export { default as PartsIcon } from "./PartsIcon";
12
+ export { default as ReferAltIcon } from "./ReferAltIcon";
13
+ export { default as SettingOutlineIcon } from "./SettingOutlineIcon";
14
+ export { default as TagIcon } from "./TagIcon";
15
+ export { default as UserCaptureAltIcon } from "./UserCaptureAltIcon";
16
+ export { default as UserSmallIcon } from "./UserSmallIcon";