@edux-design/icons 0.0.2 → 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.
- package/dist/index.d.mts +35 -1
- package/dist/index.d.ts +35 -1
- package/dist/index.js +485 -97
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +469 -98
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/24/addimage.svg +1 -0
- package/src/24/boldtext.svg +1 -0
- package/src/24/headingtext.svg +1 -0
- package/src/24/headingtext1.svg +1 -0
- package/src/24/headingtext2.svg +1 -0
- package/src/24/headingtext3.svg +1 -0
- package/src/24/headingtext4.svg +1 -0
- package/src/24/headingtext5.svg +1 -0
- package/src/24/headingtext6.svg +1 -0
- package/src/24/italicstext.svg +1 -0
- package/src/24/redo.svg +1 -0
- package/src/24/text-align-center.svg +1 -0
- package/src/24/text-align-end.svg +1 -0
- package/src/24/text-align-justify.svg +1 -0
- package/src/24/text-align-start.svg +1 -0
- package/src/24/underlinetext.svg +1 -0
- package/src/24/undo.svg +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { SVGProps } from 'react';
|
|
3
3
|
|
|
4
|
+
declare const SvgAddimage: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
5
|
+
|
|
6
|
+
declare const SvgBoldtext: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
4
8
|
declare const SvgBook: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
5
9
|
|
|
6
10
|
declare const SvgCheck: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -31,10 +35,26 @@ declare const SvgGologo: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.J
|
|
|
31
35
|
|
|
32
36
|
declare const SvgHamburger: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
33
37
|
|
|
38
|
+
declare const SvgHeadingtext: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
39
|
+
|
|
40
|
+
declare const SvgHeadingtext1: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
declare const SvgHeadingtext2: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
43
|
+
|
|
44
|
+
declare const SvgHeadingtext3: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
|
|
46
|
+
declare const SvgHeadingtext4: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
47
|
+
|
|
48
|
+
declare const SvgHeadingtext5: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
49
|
+
|
|
50
|
+
declare const SvgHeadingtext6: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
51
|
+
|
|
34
52
|
declare const SvgIndeterminate: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
35
53
|
|
|
36
54
|
declare const SvgInfo: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
37
55
|
|
|
56
|
+
declare const SvgItalicstext: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
57
|
+
|
|
38
58
|
declare const SvgLast: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
39
59
|
|
|
40
60
|
declare const SvgNext: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -47,6 +67,8 @@ declare const SvgPrevious: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime
|
|
|
47
67
|
|
|
48
68
|
declare const SvgProduct: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
49
69
|
|
|
70
|
+
declare const SvgRedo: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
71
|
+
|
|
50
72
|
declare const SvgSearchglass: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
51
73
|
|
|
52
74
|
declare const SvgSeries: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -57,10 +79,22 @@ declare const SvgSuccess: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.
|
|
|
57
79
|
|
|
58
80
|
declare const SvgSwaporder: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
59
81
|
|
|
82
|
+
declare const SvgTextAlignCenter: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
83
|
+
|
|
84
|
+
declare const SvgTextAlignEnd: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
85
|
+
|
|
86
|
+
declare const SvgTextAlignJustify: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
87
|
+
|
|
88
|
+
declare const SvgTextAlignStart: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
89
|
+
|
|
90
|
+
declare const SvgUnderlinetext: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
91
|
+
|
|
92
|
+
declare const SvgUndo: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
93
|
+
|
|
60
94
|
declare const SvgUnknown: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
61
95
|
|
|
62
96
|
declare const SvgUsers: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
63
97
|
|
|
64
98
|
declare const SvgWarning: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
65
99
|
|
|
66
|
-
export { SvgBook as Book, SvgCheck as Check, SvgChevron as Chevron, SvgClass as Class, SvgClose as Close, SvgCode as Code, SvgCollapse as Collapse, SvgCopy as Copy, SvgError as Error, SvgExternal as External, SvgEye as Eye, SvgEyehide as Eyehide, SvgFirst as First, SvgGologo as Gologo, SvgHamburger as Hamburger, SvgIndeterminate as Indeterminate, SvgInfo as Info, SvgLast as Last, SvgNext as Next, SvgPersonAvatar as PersonAvatar, SvgPlus as Plus, SvgPrevious as Previous, SvgProduct as Product, SvgSearchglass as Searchglass, SvgSeries as Series, SvgSettings as Settings, SvgSuccess as Success, SvgSwaporder as Swaporder, SvgUnknown as Unknown, SvgUsers as Users, SvgWarning as Warning };
|
|
100
|
+
export { SvgAddimage as Addimage, SvgBoldtext as Boldtext, SvgBook as Book, SvgCheck as Check, SvgChevron as Chevron, SvgClass as Class, SvgClose as Close, SvgCode as Code, SvgCollapse as Collapse, SvgCopy as Copy, SvgError as Error, SvgExternal as External, SvgEye as Eye, SvgEyehide as Eyehide, SvgFirst as First, SvgGologo as Gologo, SvgHamburger as Hamburger, SvgHeadingtext as Headingtext, SvgHeadingtext1 as Headingtext1, SvgHeadingtext2 as Headingtext2, SvgHeadingtext3 as Headingtext3, SvgHeadingtext4 as Headingtext4, SvgHeadingtext5 as Headingtext5, SvgHeadingtext6 as Headingtext6, SvgIndeterminate as Indeterminate, SvgInfo as Info, SvgItalicstext as Italicstext, SvgLast as Last, SvgNext as Next, SvgPersonAvatar as PersonAvatar, SvgPlus as Plus, SvgPrevious as Previous, SvgProduct as Product, SvgRedo as Redo, SvgSearchglass as Searchglass, SvgSeries as Series, SvgSettings as Settings, SvgSuccess as Success, SvgSwaporder as Swaporder, SvgTextAlignCenter as TextAlignCenter, SvgTextAlignEnd as TextAlignEnd, SvgTextAlignJustify as TextAlignJustify, SvgTextAlignStart as TextAlignStart, SvgUnderlinetext as Underlinetext, SvgUndo as Undo, SvgUnknown as Unknown, SvgUsers as Users, SvgWarning as Warning };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { SVGProps } from 'react';
|
|
3
3
|
|
|
4
|
+
declare const SvgAddimage: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
5
|
+
|
|
6
|
+
declare const SvgBoldtext: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
4
8
|
declare const SvgBook: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
5
9
|
|
|
6
10
|
declare const SvgCheck: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -31,10 +35,26 @@ declare const SvgGologo: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.J
|
|
|
31
35
|
|
|
32
36
|
declare const SvgHamburger: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
33
37
|
|
|
38
|
+
declare const SvgHeadingtext: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
39
|
+
|
|
40
|
+
declare const SvgHeadingtext1: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
declare const SvgHeadingtext2: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
43
|
+
|
|
44
|
+
declare const SvgHeadingtext3: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
|
|
46
|
+
declare const SvgHeadingtext4: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
47
|
+
|
|
48
|
+
declare const SvgHeadingtext5: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
49
|
+
|
|
50
|
+
declare const SvgHeadingtext6: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
51
|
+
|
|
34
52
|
declare const SvgIndeterminate: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
35
53
|
|
|
36
54
|
declare const SvgInfo: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
37
55
|
|
|
56
|
+
declare const SvgItalicstext: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
57
|
+
|
|
38
58
|
declare const SvgLast: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
39
59
|
|
|
40
60
|
declare const SvgNext: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -47,6 +67,8 @@ declare const SvgPrevious: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime
|
|
|
47
67
|
|
|
48
68
|
declare const SvgProduct: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
49
69
|
|
|
70
|
+
declare const SvgRedo: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
71
|
+
|
|
50
72
|
declare const SvgSearchglass: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
51
73
|
|
|
52
74
|
declare const SvgSeries: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -57,10 +79,22 @@ declare const SvgSuccess: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.
|
|
|
57
79
|
|
|
58
80
|
declare const SvgSwaporder: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
59
81
|
|
|
82
|
+
declare const SvgTextAlignCenter: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
83
|
+
|
|
84
|
+
declare const SvgTextAlignEnd: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
85
|
+
|
|
86
|
+
declare const SvgTextAlignJustify: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
87
|
+
|
|
88
|
+
declare const SvgTextAlignStart: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
89
|
+
|
|
90
|
+
declare const SvgUnderlinetext: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
91
|
+
|
|
92
|
+
declare const SvgUndo: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
93
|
+
|
|
60
94
|
declare const SvgUnknown: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
61
95
|
|
|
62
96
|
declare const SvgUsers: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
63
97
|
|
|
64
98
|
declare const SvgWarning: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
65
99
|
|
|
66
|
-
export { SvgBook as Book, SvgCheck as Check, SvgChevron as Chevron, SvgClass as Class, SvgClose as Close, SvgCode as Code, SvgCollapse as Collapse, SvgCopy as Copy, SvgError as Error, SvgExternal as External, SvgEye as Eye, SvgEyehide as Eyehide, SvgFirst as First, SvgGologo as Gologo, SvgHamburger as Hamburger, SvgIndeterminate as Indeterminate, SvgInfo as Info, SvgLast as Last, SvgNext as Next, SvgPersonAvatar as PersonAvatar, SvgPlus as Plus, SvgPrevious as Previous, SvgProduct as Product, SvgSearchglass as Searchglass, SvgSeries as Series, SvgSettings as Settings, SvgSuccess as Success, SvgSwaporder as Swaporder, SvgUnknown as Unknown, SvgUsers as Users, SvgWarning as Warning };
|
|
100
|
+
export { SvgAddimage as Addimage, SvgBoldtext as Boldtext, SvgBook as Book, SvgCheck as Check, SvgChevron as Chevron, SvgClass as Class, SvgClose as Close, SvgCode as Code, SvgCollapse as Collapse, SvgCopy as Copy, SvgError as Error, SvgExternal as External, SvgEye as Eye, SvgEyehide as Eyehide, SvgFirst as First, SvgGologo as Gologo, SvgHamburger as Hamburger, SvgHeadingtext as Headingtext, SvgHeadingtext1 as Headingtext1, SvgHeadingtext2 as Headingtext2, SvgHeadingtext3 as Headingtext3, SvgHeadingtext4 as Headingtext4, SvgHeadingtext5 as Headingtext5, SvgHeadingtext6 as Headingtext6, SvgIndeterminate as Indeterminate, SvgInfo as Info, SvgItalicstext as Italicstext, SvgLast as Last, SvgNext as Next, SvgPersonAvatar as PersonAvatar, SvgPlus as Plus, SvgPrevious as Previous, SvgProduct as Product, SvgRedo as Redo, SvgSearchglass as Searchglass, SvgSeries as Series, SvgSettings as Settings, SvgSuccess as Success, SvgSwaporder as Swaporder, SvgTextAlignCenter as TextAlignCenter, SvgTextAlignEnd as TextAlignEnd, SvgTextAlignJustify as TextAlignJustify, SvgTextAlignStart as TextAlignStart, SvgUnderlinetext as Underlinetext, SvgUndo as Undo, SvgUnknown as Unknown, SvgUsers as Users, SvgWarning as Warning };
|