wasvg 1.7.0 → 1.8.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.
- package/dist/index.d.ts +13 -10
- package/dist/wasvg.cjs.js +19 -19
- package/dist/wasvg.es.js +1042 -1024
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
import { CategoryName } from 'wenum';
|
|
2
|
+
import { InterestName } from 'wenum';
|
|
1
3
|
import { JSX } from 'react/jsx-runtime';
|
|
4
|
+
import { SportsInterestName } from 'wenum';
|
|
2
5
|
|
|
3
6
|
export declare function AddSvg({ className, size }: SvgProps): JSX.Element;
|
|
4
7
|
|
|
@@ -18,10 +21,10 @@ export declare function CalendarSvg({ className, size }: SvgProps): JSX.Element;
|
|
|
18
21
|
|
|
19
22
|
export declare function Cat({ className, size }: SvgProps): JSX.Element;
|
|
20
23
|
|
|
21
|
-
export declare function CategorySvg({
|
|
24
|
+
export declare function CategorySvg({ categoryName, size, className }: CategorySvgProps): JSX.Element | null;
|
|
22
25
|
|
|
23
26
|
declare interface CategorySvgProps {
|
|
24
|
-
|
|
27
|
+
categoryName: CategoryName;
|
|
25
28
|
size?: SvgSize;
|
|
26
29
|
className?: string;
|
|
27
30
|
}
|
|
@@ -76,11 +79,11 @@ export declare function HomeSvg({ className, size }: SvgProps): JSX.Element;
|
|
|
76
79
|
|
|
77
80
|
export declare function ImageSvg({ className, size }: SvgProps): JSX.Element;
|
|
78
81
|
|
|
79
|
-
export declare function InterestSvg({
|
|
82
|
+
export declare function InterestSvg({ interestName, categoryName, size, className }: InterestSvgProps): JSX.Element | null;
|
|
80
83
|
|
|
81
84
|
declare interface InterestSvgProps {
|
|
82
|
-
|
|
83
|
-
|
|
85
|
+
interestName: InterestName;
|
|
86
|
+
categoryName: CategoryName;
|
|
84
87
|
size?: SvgSize;
|
|
85
88
|
className?: string;
|
|
86
89
|
}
|
|
@@ -137,21 +140,21 @@ export declare function SendSvg({ className, size }: SvgProps): JSX.Element;
|
|
|
137
140
|
|
|
138
141
|
export declare function Sing({ className, size }: SvgProps): JSX.Element;
|
|
139
142
|
|
|
140
|
-
export declare function
|
|
143
|
+
export declare function Skiing({ className, size }: SvgProps): JSX.Element;
|
|
141
144
|
|
|
142
145
|
export declare function Soccer({ className, size }: SvgProps): JSX.Element;
|
|
143
146
|
|
|
144
|
-
export declare function SportsInterestSvg({
|
|
147
|
+
export declare function SportsInterestSvg({ interestName, className, size }: SportsInterestSvgProps): JSX.Element | null;
|
|
145
148
|
|
|
146
149
|
declare interface SportsInterestSvgProps {
|
|
147
|
-
|
|
150
|
+
interestName: SportsInterestName;
|
|
148
151
|
className?: string;
|
|
149
152
|
size?: SvgSize;
|
|
150
153
|
}
|
|
151
154
|
|
|
152
155
|
export declare function SportsSvg({ className, size }: SvgProps): JSX.Element;
|
|
153
156
|
|
|
154
|
-
export declare function
|
|
157
|
+
export declare function Surfing({ className, size }: SvgProps): JSX.Element;
|
|
155
158
|
|
|
156
159
|
export declare interface SvgProps {
|
|
157
160
|
className?: string;
|
|
@@ -166,7 +169,7 @@ export declare enum SvgSize {
|
|
|
166
169
|
xl = 50
|
|
167
170
|
}
|
|
168
171
|
|
|
169
|
-
export declare function
|
|
172
|
+
export declare function Swimming({ className, size }: SvgProps): JSX.Element;
|
|
170
173
|
|
|
171
174
|
export declare function TableTennis({ className, size }: SvgProps): JSX.Element;
|
|
172
175
|
|