@redsift/icons 10.3.0-alpha.5 → 10.3.0-alpha.6
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/CONTRIBUTING.md +0 -4
- package/package.json +2 -2
package/CONTRIBUTING.md
CHANGED
|
@@ -137,9 +137,6 @@ import { BadgeProps } from './types';
|
|
|
137
137
|
|
|
138
138
|
const COMPONENT_NAME = 'Badge';
|
|
139
139
|
const CLASSNAME = 'redsift-badge';
|
|
140
|
-
const DEFAULT_PROPS: Partial<BadgeProps> = {
|
|
141
|
-
// default values
|
|
142
|
-
};
|
|
143
140
|
|
|
144
141
|
/**
|
|
145
142
|
* The Badge component.
|
|
@@ -162,7 +159,6 @@ export const Badge: Comp<BadgeProps, HTMLDivElement> = forwardRef((props, ref) =
|
|
|
162
159
|
);
|
|
163
160
|
});
|
|
164
161
|
Badge.className = CLASSNAME;
|
|
165
|
-
Badge.defaultProps = DEFAULT_PROPS;
|
|
166
162
|
Badge.displayName = COMPONENT_NAME;
|
|
167
163
|
```
|
|
168
164
|
|
package/package.json
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"prepublishOnly": "yarn build"
|
|
27
27
|
},
|
|
28
28
|
"types": "index.d.ts",
|
|
29
|
-
"version": "10.3.0-alpha.
|
|
29
|
+
"version": "10.3.0-alpha.6",
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@mdi/js": "^7.1.96"
|
|
32
32
|
},
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"react": ">=17",
|
|
73
73
|
"react-dom": ">=17"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "eba126144062df5f7b01c7b7a6a938ac4fb120f4"
|
|
76
76
|
}
|