@catalystsoftware/icons 1.0.8 → 1.0.10

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 CHANGED
@@ -7,7 +7,7 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
7
7
  absoluteStrokeWidth?: boolean;
8
8
  }
9
9
  type Icon$1 = React.ForwardRefExoticComponent<Omit<IconProps, 'ref'> & React.RefAttributes<SVGSVGElement>>;
10
- declare function createIcon(pathData: string | string[], displayName: string): Icon$1;
10
+ declare function createIcon(pathData: string | string[], displayName: string, defaultFill?: boolean): Icon$1;
11
11
 
12
12
  declare const Ace: Icon$1;
13
13
 
package/dist/index.d.ts CHANGED
@@ -7,7 +7,7 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
7
7
  absoluteStrokeWidth?: boolean;
8
8
  }
9
9
  type Icon$1 = React.ForwardRefExoticComponent<Omit<IconProps, 'ref'> & React.RefAttributes<SVGSVGElement>>;
10
- declare function createIcon(pathData: string | string[], displayName: string): Icon$1;
10
+ declare function createIcon(pathData: string | string[], displayName: string, defaultFill?: boolean): Icon$1;
11
11
 
12
12
  declare const Ace: Icon$1;
13
13