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