@ballistix.digital/react-components 0.4.85 → 0.4.86
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 +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -114,7 +114,7 @@ declare const DropdownElement: {
|
|
|
114
114
|
|
|
115
115
|
type TProps$b = {
|
|
116
116
|
accessor: IconName;
|
|
117
|
-
type
|
|
117
|
+
type?: 'brands' | 'light' | 'regular' | 'solid';
|
|
118
118
|
className?: string;
|
|
119
119
|
};
|
|
120
120
|
declare const IconElement: FC<TProps$b>;
|
package/dist/index.esm.js
CHANGED
|
@@ -3230,7 +3230,7 @@ var icons = {
|
|
|
3230
3230
|
};
|
|
3231
3231
|
|
|
3232
3232
|
var IconElement = function (props) {
|
|
3233
|
-
var accessor = props.accessor, _a = props.type, type = _a === void 0 ? '
|
|
3233
|
+
var accessor = props.accessor, _a = props.type, type = _a === void 0 ? 'regular' : _a, className = props.className;
|
|
3234
3234
|
var component = jsx("div", {});
|
|
3235
3235
|
switch (type) {
|
|
3236
3236
|
case 'brands':
|
package/dist/index.js
CHANGED
|
@@ -3240,7 +3240,7 @@ var icons = {
|
|
|
3240
3240
|
};
|
|
3241
3241
|
|
|
3242
3242
|
var IconElement = function (props) {
|
|
3243
|
-
var accessor = props.accessor, _a = props.type, type = _a === void 0 ? '
|
|
3243
|
+
var accessor = props.accessor, _a = props.type, type = _a === void 0 ? 'regular' : _a, className = props.className;
|
|
3244
3244
|
var component = jsxRuntime.jsx("div", {});
|
|
3245
3245
|
switch (type) {
|
|
3246
3246
|
case 'brands':
|