wiggle-icons 1.0.0
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 +56 -0
- package/dist/index.d.ts +56 -0
- package/dist/index.js +1222 -0
- package/dist/index.mjs +1222 -0
- package/package.json +30 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
type IconProps = {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
badge?: number;
|
|
7
|
+
badgeColor?: string;
|
|
8
|
+
badgeFont?: string;
|
|
9
|
+
badgeFontColor?: string;
|
|
10
|
+
} & React.SVGProps<SVGSVGElement>;
|
|
11
|
+
|
|
12
|
+
declare const HomeIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
13
|
+
|
|
14
|
+
declare const ShoppingBag: ({ size, color, badge, badgeColor, badgeFont, badgeFontColor, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
15
|
+
|
|
16
|
+
declare const ScissorIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
17
|
+
|
|
18
|
+
declare const ShoppingCartIcon: ({ size, color, badge, badgeColor, badgeFont, badgeFontColor, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
20
|
+
declare const SpeakerIcon: ({ size, color, badge, badgeColor, badgeFont, badgeFontColor, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
21
|
+
|
|
22
|
+
declare const ArrowRightLeftIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
23
|
+
|
|
24
|
+
declare const AtSignIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
declare const RefreshIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
27
|
+
|
|
28
|
+
declare const ArrowPointingInIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
|
|
30
|
+
declare const ArrowPointingOutIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
31
|
+
|
|
32
|
+
declare const ChartIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
33
|
+
|
|
34
|
+
declare const BugAntIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
35
|
+
|
|
36
|
+
declare const ChatBubbleLeftEllipsisIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
37
|
+
|
|
38
|
+
declare const ChevronDoubleLeftIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
39
|
+
|
|
40
|
+
declare const CursorArrowRaysIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
declare const FaceFrownIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
43
|
+
|
|
44
|
+
declare const FaceSmileIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
|
|
46
|
+
declare const LockOpenIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
47
|
+
|
|
48
|
+
declare const RocketLaunchIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
49
|
+
|
|
50
|
+
declare const PaperPlaneIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
51
|
+
|
|
52
|
+
declare const PhoneXMarkIcon: ({ size, color, badge, badgeColor, badgeFont, badgeFontColor, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
53
|
+
|
|
54
|
+
declare const ArrowTrendingDownIcon: ({ size, color, badge, badgeColor, badgeFont, badgeFontColor, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
55
|
+
|
|
56
|
+
export { ArrowPointingInIcon, ArrowPointingOutIcon, ArrowRightLeftIcon, ArrowTrendingDownIcon, AtSignIcon, BugAntIcon, ChartIcon, ChatBubbleLeftEllipsisIcon, ChevronDoubleLeftIcon, CursorArrowRaysIcon, FaceFrownIcon, FaceSmileIcon, HomeIcon, type IconProps, LockOpenIcon, PaperPlaneIcon, PhoneXMarkIcon, RefreshIcon, RocketLaunchIcon, ScissorIcon, ShoppingBag, ShoppingCartIcon, SpeakerIcon };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
type IconProps = {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
badge?: number;
|
|
7
|
+
badgeColor?: string;
|
|
8
|
+
badgeFont?: string;
|
|
9
|
+
badgeFontColor?: string;
|
|
10
|
+
} & React.SVGProps<SVGSVGElement>;
|
|
11
|
+
|
|
12
|
+
declare const HomeIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
13
|
+
|
|
14
|
+
declare const ShoppingBag: ({ size, color, badge, badgeColor, badgeFont, badgeFontColor, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
15
|
+
|
|
16
|
+
declare const ScissorIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
17
|
+
|
|
18
|
+
declare const ShoppingCartIcon: ({ size, color, badge, badgeColor, badgeFont, badgeFontColor, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
20
|
+
declare const SpeakerIcon: ({ size, color, badge, badgeColor, badgeFont, badgeFontColor, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
21
|
+
|
|
22
|
+
declare const ArrowRightLeftIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
23
|
+
|
|
24
|
+
declare const AtSignIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
declare const RefreshIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
27
|
+
|
|
28
|
+
declare const ArrowPointingInIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
|
|
30
|
+
declare const ArrowPointingOutIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
31
|
+
|
|
32
|
+
declare const ChartIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
33
|
+
|
|
34
|
+
declare const BugAntIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
35
|
+
|
|
36
|
+
declare const ChatBubbleLeftEllipsisIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
37
|
+
|
|
38
|
+
declare const ChevronDoubleLeftIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
39
|
+
|
|
40
|
+
declare const CursorArrowRaysIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
declare const FaceFrownIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
43
|
+
|
|
44
|
+
declare const FaceSmileIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
|
|
46
|
+
declare const LockOpenIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
47
|
+
|
|
48
|
+
declare const RocketLaunchIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
49
|
+
|
|
50
|
+
declare const PaperPlaneIcon: ({ size, color, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
51
|
+
|
|
52
|
+
declare const PhoneXMarkIcon: ({ size, color, badge, badgeColor, badgeFont, badgeFontColor, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
53
|
+
|
|
54
|
+
declare const ArrowTrendingDownIcon: ({ size, color, badge, badgeColor, badgeFont, badgeFontColor, ...rest }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
55
|
+
|
|
56
|
+
export { ArrowPointingInIcon, ArrowPointingOutIcon, ArrowRightLeftIcon, ArrowTrendingDownIcon, AtSignIcon, BugAntIcon, ChartIcon, ChatBubbleLeftEllipsisIcon, ChevronDoubleLeftIcon, CursorArrowRaysIcon, FaceFrownIcon, FaceSmileIcon, HomeIcon, type IconProps, LockOpenIcon, PaperPlaneIcon, PhoneXMarkIcon, RefreshIcon, RocketLaunchIcon, ScissorIcon, ShoppingBag, ShoppingCartIcon, SpeakerIcon };
|