wasvg 1.8.1 → 1.10.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 CHANGED
@@ -1,6 +1,8 @@
1
1
  import { CategoryName } from 'wenum';
2
2
  import { InterestName } from 'wenum';
3
3
  import { JSX } from 'react/jsx-runtime';
4
+ import { MusicInterestName } from 'wenum';
5
+ import { PetsInterestName } from 'wenum';
4
6
  import { SportsInterestName } from 'wenum';
5
7
 
6
8
  export declare function AddSvg({ className, size }: SvgProps): JSX.Element;
@@ -79,7 +81,7 @@ export declare function HomeSvg({ className, size }: SvgProps): JSX.Element;
79
81
 
80
82
  export declare function ImageSvg({ className, size }: SvgProps): JSX.Element;
81
83
 
82
- export declare function InterestSvg({ interestName, categoryName, size, className }: InterestSvgProps): JSX.Element | null;
84
+ export declare function InterestSvg({ interestName, categoryName, size, className }: InterestSvgProps): JSX.Element | undefined;
83
85
 
84
86
  declare interface InterestSvgProps {
85
87
  interestName: InterestName;
@@ -102,10 +104,10 @@ export declare function MenuSvg({ className, size }: SvgProps): JSX.Element;
102
104
 
103
105
  export declare function MinusSvg({ className, size }: SvgProps): JSX.Element;
104
106
 
105
- export declare function MusicInterestSvg({ seq, className, size }: MusicInterestSvgProps): JSX.Element;
107
+ export declare function MusicInterestSvg({ interestName, className, size }: MusicInterestSvgProps): JSX.Element | undefined;
106
108
 
107
109
  declare interface MusicInterestSvgProps {
108
- seq: number;
110
+ interestName: MusicInterestName;
109
111
  className?: string;
110
112
  size?: SvgSize;
111
113
  }
@@ -116,10 +118,10 @@ export declare function NotificationSvg({ className, size }: SvgProps): JSX.Elem
116
118
 
117
119
  export declare function PartnersSvg({ className, size }: SvgProps): JSX.Element;
118
120
 
119
- export declare function PetsInterestSvg({ seq, className, size }: PetsInterestSvgProps): JSX.Element;
121
+ export declare function PetsInterestSvg({ interestName, className, size }: PetsInterestSvgProps): JSX.Element | undefined;
120
122
 
121
123
  declare interface PetsInterestSvgProps {
122
- seq: number;
124
+ interestName: PetsInterestName;
123
125
  className?: string;
124
126
  size?: SvgSize;
125
127
  }
@@ -138,13 +140,13 @@ export declare function Running({ className, size }: SvgProps): JSX.Element;
138
140
 
139
141
  export declare function SendSvg({ className, size }: SvgProps): JSX.Element;
140
142
 
141
- export declare function Sing({ className, size }: SvgProps): JSX.Element;
143
+ export declare function Singing({ className, size }: SvgProps): JSX.Element;
142
144
 
143
145
  export declare function Skiing({ className, size }: SvgProps): JSX.Element;
144
146
 
145
147
  export declare function Soccer({ className, size }: SvgProps): JSX.Element;
146
148
 
147
- export declare function SportsInterestSvg({ interestName, className, size }: SportsInterestSvgProps): JSX.Element | null;
149
+ export declare function SportsInterestSvg({ interestName, className, size }: SportsInterestSvgProps): JSX.Element | undefined;
148
150
 
149
151
  declare interface SportsInterestSvgProps {
150
152
  interestName: SportsInterestName;