wasvg 1.7.0 → 1.7.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 CHANGED
@@ -1,3 +1,4 @@
1
+ import { CategoryName } from 'wenum';
1
2
  import { JSX } from 'react/jsx-runtime';
2
3
 
3
4
  export declare function AddSvg({ className, size }: SvgProps): JSX.Element;
@@ -18,10 +19,10 @@ export declare function CalendarSvg({ className, size }: SvgProps): JSX.Element;
18
19
 
19
20
  export declare function Cat({ className, size }: SvgProps): JSX.Element;
20
21
 
21
- export declare function CategorySvg({ seq, size, className }: CategorySvgProps): JSX.Element;
22
+ export declare function CategorySvg({ categoryName, size, className }: CategorySvgProps): JSX.Element | null;
22
23
 
23
24
  declare interface CategorySvgProps {
24
- seq: number;
25
+ categoryName: CategoryName;
25
26
  size?: SvgSize;
26
27
  className?: string;
27
28
  }