@agility/plenum-ui 2.0.0-rc20 → 2.0.0-rc21
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.
|
@@ -11,7 +11,7 @@ export declare function isHeroIcon(name: UnifiedIconName): name is keyof typeof
|
|
|
11
11
|
export declare function isTablerIcon(name: UnifiedIconName): name is TablerIconName;
|
|
12
12
|
export declare function isFAIcon(name: UnifiedIconName): name is keyof typeof FA;
|
|
13
13
|
export declare function isUnifiedIconName(name: UnifiedIconName): name is UnifiedIconName;
|
|
14
|
-
export interface IDynamicIconProps
|
|
14
|
+
export interface IDynamicIconProps {
|
|
15
15
|
icon: UnifiedIconName;
|
|
16
16
|
className?: ClassNameWithAutocomplete;
|
|
17
17
|
outline?: boolean;
|
package/package.json
CHANGED
|
@@ -31,7 +31,8 @@ export function isUnifiedIconName(name: UnifiedIconName): name is UnifiedIconNam
|
|
|
31
31
|
return isTablerIcon(name) || isFAIcon(name)
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
export interface IDynamicIconProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
34
|
+
//export interface IDynamicIconProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
35
|
+
export interface IDynamicIconProps {
|
|
35
36
|
icon: UnifiedIconName
|
|
36
37
|
className?: ClassNameWithAutocomplete
|
|
37
38
|
outline?: boolean
|